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

Android secret codes

Just type these codes as it is in your phone and see the magic!!!! 1. Phone Information, Usage and Battery –  *#*#4636#*#* 2. IMEI Number – *#06# 3. Enter Service Menu On Newer Phones – *#0*# 4. Detailed Camera Information –  *#*#34971539#*#* 5. Backup All Media Files – *#*#273282*255* 663282*#*#* 6. Wireless LAN Test – *#*#232339#*#* 7. Enable Test Mode for Service –*#*#197328640#*#* 8. Back-light Test – *#*#0842#*#* 9. Test the Touchscreen – *#*#2664#*#* 10. Vibration Test – *#*#0842#*#* 11. FTA Software Version – *#*#1111#*#* 12. Complete Software and Hardware Info –*#12580*369# 13. Diagnostic Configuration – *#9090# 14. USB Logging Control – *#872564# 15. System Dump Mode – *#9900# 16. HSDPA/HSUPA Control Menu – *#301279# 17. View Phone Lock Status – *#7465625# 18. Reset the Data Partition to Factory State –*#*#7780#*#* 19. Format Your Device To Factory State(will delete everything on your phone) – *2767*3855# 20. Hidden Service Menu For Mot

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: