How to remotely monitor someone's web browsing history

What if someone clears their browsing history after surfing on your phone? Or What if he uses the incognito tab which prevents recording of browsing history? Doesn't that make you curious?
Well the good news is that you can exploit one of Google’s web services to secretly monitor someone else's web history! I believe not many of you must be familiar with Google History web service which has been an integral part of Google since inception. It is a service when turned on will record your Google search keyword, youtube videos you watched, the sites you visited 

What do you need!

  • ·        First and foremost the device in which you are planting the bug should be accessible.
  • ·        The user should not be a geek.
  • ·        A Google account of course. 


Before giving the victim your phone, make sure you do the following things.

  • ·         Figure out the browser he uses, it could be Dolphin, opera, chrome ,uc browser etc
    ·         Sign into your Google account from the web browser he is most likely to use.
    ·         Go to www.google.com/history and click on turn on web history.
    ·         Delete your previous browsing history from the browser

· 
After you have done the previous steps correctly, allow the victim to use your phone/computer. When he/she is done go to  www.google.com/history again and you will be able to figure what he/she was up to.


How to create an undeletable and unrenamable folder in Windows
In this tutorial you will learn cool and simple trick to create an undeletable and unrenamable folders In Windows operating system. Most of the Peoples are not aware that it is possible to create undeletable, unrenamable folder in Windows without any software. To test this concept just follow simple steps given below.

Try to make a new folder in windows & give it name con,aux, lpt1, lpt2, lpt3 up to lpt9. you won't be allowed to create folder with above mentioned names, because they are reserved words in windows.

How to do this trick-
1) Go to Start and then Click on Run
2) Type cmd & hit enter (To open Command Prompt ).
3) Remember you cannot create undeletable & unrenamable folder in your root directory (i.e. where the windows is installed). That means you can't make this kind of folder in C: drive if you installed Windows on C:
4) Type D: or E: and hit enter
5) Type md con\ and hit enter (md - make directory)
6) You may use other words such as aux, lpt1, lpt2, lpt3 up to lpt9 instead of con\ in above step.
7) Open that directory, you will see the folder created of name con.
8) Try to delete that folder or rename that folder windows will show the error message.


It is not possible to delete that folder manually but you can delete this folder by another way mentioned below.
1) Open Command Prompt
2) Type D: ( if u created this type of folder in D: drive) & hit enter
3) Type rd con\ (rd - remove directory)
4) Open that directory and the folder will not appear because it is removed.




Feel free to give comments or ask for any queries in the comments section given below.

ISC 2014 Computer Science Practical Paper (Solved !)

ISC 2014 Computer Practical Question.

Q3. Write a program to accept a sentence which may be terminated by either '.', '!' or '?' only. Any other character may be ignored. The words may be seperated by more than one blank space and are in upper case.
Perform the following task
  1.  Accept a sentence and reduce all the extra blank space between two words to a single blank space.
  2. Accept a word from the user which is a part of the sentence along with its position number and the deleted word and display the sentence. 

OUTPUT:

/**
 * This question came in ISC COMPUTER PRACTIALS 2014
 * THE PROGRAM HAS BEEN EXPLAINED WITH THE HELP OF LUCID COMMENTS
 */
import java.io.*;
class isc2014_q3
{
static String str=new String();//To accept and store the string
static String search_word=new String();//To accept and store the word which is to be deleted/
static int n=0;//To store the osition of the deleted word
String remove_extra_blankspace(String x)throws IOException//This function removes any extra blank spaces
{
    x=x+" ";
    String temp="";
    for(int i=0;i<x.length()-1;i++)
    {
    if(x.charAt(i)==' ' && (x.charAt(i+1)==' ' ))
        continue;
        else
        temp+=x.charAt(i);
    }
    return temp;
}
boolean validate_string(String x)throws IOException//This function validates the string
    {
        for(int i=0;i<x.length();i++)
        if(x.charAt(i)=='.'||x.charAt(i)=='!'||x.charAt(i)=='?')
        return true;
        return false;
    }
String replace()throws IOException
{
str=str.substring(0,str.length()-1);//TO REMOVE THE FULL STOP
str=str+"  ";
String store="";
int c=0;
int b=0;
for(int i=0;i<str.length();i++)
    {
        if(str.charAt(i)==' ')
        {
            String temp=str.substring(b,i);
            b=i+1;
            c++;
            if(c==n && temp.equals(search_word))
            continue;
            else
            store=store+(temp+" ");
        }
    }
    store=store+".";    
    return store;
}
public static void main()throws IOException
{
InputStreamReader read= new InputStreamReader(System.in);
BufferedReader br=new BufferedReader(read);
String fixed_string="";
isc2014_q3 ob =new isc2014_q3();
System.out.print("INPUT :");
str=br.readLine();
if(ob.validate_string(str)==false)
System.out.println("INVALID STRING");
else
{
System.out.print("WORD TO BE DELETED :");
search_word=br.readLine();
System.out.print("WORD POSITION IN THE SENTENCE :");
n=Integer.parseInt(br.readLine());
fixed_string=ob.remove_extra_blankspace(str);
str=fixed_string;
System.out.println("OUTPUT :"+ob.replace());
}
}
}