Skip to main content

Finding IP address using facebook!!!!!

If you want to check for ip address of particular person on facebook or orkut or any other social site just invite them for a chat, so that your browser should connect to that system, than only when chat is ON open command prompt type the below command
Netstat –an
This will show you the connected ip addresses, than from shown ip addresses search for suspicious ip address that is not the local connection address.
Local connections normally start from 192.168.1.1 ranging to 192.168.1.255
Other netstat commands:
-a Displays all connections and listening ports.
-e Displays Ethernet statistics. This may be combined with the -s option.
-n Displays addresses and port numbers in numerical form.
-p proto Shows connections for the protocol specified by proto; proto may be TCP or UDP.
-s option to display per-protocol statistics, proto may be TCP, UDP, or IP.
-r Displays the routing table.
-s Displays per-protocol statistics. By default, statistics are shown for TCP, UDP and IP; the
-p option may be used to specify a subset of the default.

Another method for obtaining ip address
Firstly create a online hosting account for free. Now upload any file on it such as a image. Send the image link to your friend as orkut scrap or facebook message or as any other method your want. once the user will go through that image link, a file named log.txt will be generated by hosting server and will be saved nearby your uploaded file.

This log.txt file will be containing ip address of the user who opened it from the sent link.

Now what an ip address can do for you. An ip address can be very useful to you. As with ip address you can trace the location of victims system. ip address is useful in many types of hacking.
With an ip address open port (searching for open port) can be searched, through which you can gain access to targeted computer and do whatever you want on it to (system hacking with open port)

Comments

  1. Nice blog useful for those who are looking for some other ways to find the ip address of a person with whom we are chatting in Facebook ..I followed the steps which you mentioned here and easily find out the ip address of one of my Facebook friend .After finding his ip address i did whois search for that ip address to trace his location through sites like WhoisXY.com here they are displaying details like ip location ,country ,ISP address ,ISP name and so on i can't trace the exact home address of that person from ip address i can trace only his ISP details from IP address ...

    ReplyDelete
    Replies
    1. mano Thank you , and i am glad my blog was helpful for you!!..Regarding exact home address i suggest who.is for you.
      Keep Visiting!!

      Delete

Post a Comment

Popular posts from this blog

C++ Program for Circular Doubly Linked List

Today we are gonna tell you the C++ Program to demonstrate circular doubly linked list. The C++ program is successfully compiled and runs on any system.  Here is the code : #include<iostream> #include<cstdio> #include<cstdlib> using namespace std ;   /*  * Node Declaration  */ struct node { int info ; struct node * next ; struct node * prev ; } * start, * last ; int counter = 0 ; /*  * Class Declaration  */ class double_clist { public : node * create_node ( int ) ; void insert_begin ( ) ; void insert_last ( ) ; void insert_pos ( ) ; void delete_pos ( ) ; void search ( ) ; void update ( ) ; void display ( ) ; void reverse ( ) ; void sort ( ) ; double_clist ( ) { start = NULL ; last = NULL ; } } ;   /*  * Main:

How to find Virus using cmd

Today I am going to show you how to find virus using this simple cmd command.In order to learn how to find the virus and delete it ,just follow the steps given below: Go to search and type cmd,open it. In cmd type cd\ and press enter key and then type 'attrib' and press enter . A list will appear If the file in front of SHR has a .exe or .inf extension , then it means that it is a virus!...If not your PC is safe. How to Delete The Virus type "attrib -s -h -r nameoffile.inf" and press enter key (change name of file to the fie with virus) then type "del nameoffile.inf"  and press enter. In nameoffile type the file name which is infested with virus. Boom! You have deleted the virus now!! Hope it helped ..Thank you :)