Author Topic: Finding IP addresses on the same wireless internet - HELP.  (Read 2394 times)

0 Members and 1 Guest are viewing this topic.

Offline OneWayFloww

  • NULL
  • Posts: 2
  • Cookies: 0
    • View Profile
Finding IP addresses on the same wireless internet - HELP.
« on: January 19, 2012, 05:08:14 am »
Hey guys,


This is my first question I'm throwin' at ya. If you didn't catch my introduction, I'm new here.


How can I find the IP Address of another computer that is using the same wireless internet as me? In fact, he's in the same apartment, I just kinda wanna mess around with him lol ;D

Offline rucciva

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 1
    • View Profile
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #1 on: January 19, 2012, 08:50:18 am »
if you just want to find the ip adress, you can use many tools like wireshark, nmap, hping2 etc,,

for example if you want to use nmap,, u can use this command
$ nmap -sP <your ip address>/24
--CMIIW--

xor

  • Guest
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #2 on: January 19, 2012, 10:39:14 am »
There are several methods to finding an IP address of a computer on the same LAN.

1. Run a network scan as suggested above, common tools include nmap, angry ip scanner.
2. Check your ARP table from the terminal / command line (arp -a) should be sufficient on both Linux and Windows.
3. Ping the name of his computer (assuming you know it).
4. Login to the web interface of the router and check the DHCP lease table or the NAT table.
5. Go on his computer and run an ipconfig (windows) or an ifconfig (linux) and mark down the IPv4 address.

Hope this helps.

 -- xor

Offline ovi_x

  • Peasant
  • *
  • Posts: 98
  • Cookies: -21
    • View Profile
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #3 on: January 21, 2012, 07:56:09 pm »
look@lan  simple and  stable , if  you  want  to  see all ip  actives  on  the  same lan a  your  network card
 :P

Offline muminrz

  • NULL
  • Posts: 1
  • Cookies: 0
    • View Profile
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #4 on: February 09, 2012, 04:02:59 am »
Try netdiscover -i iface
« Last Edit: February 09, 2012, 06:03:46 am by muminrz »

Offline t13ru

  • NULL
  • Posts: 3
  • Cookies: 0
    • View Profile
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #5 on: February 09, 2012, 01:25:44 pm »
Or you can ping whole subnet by tiping:

windows:
C:\> FOR /L %i in (1,1,255) do @ping -n 1 10.10.10.%i | find "Reply"

linux:

  • # ping -b -c 3 255.255.255.255 >/dev/null 2>&1; arp -an | awk '{print $2}'
  • $ for i in `seq 1 255`; do ping -c 1 10.10.10.$i | tr \\n ' ' | awk '/1 received/ {print $2}'; done
« Last Edit: February 09, 2012, 01:28:07 pm by t13ru »

xor

  • Guest
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #6 on: February 09, 2012, 02:26:27 pm »
t13ru, you can ping the whole subnet by pinging the broadcast address of the subnet and checking the ARP table.

If you are on subnet 10.0.0.0/24 for example (10.0.0.0 - 10.0.0.254), you can ping 10.0.0.255 and all of the online computers will respond.
Once you've given it enough time, check your ARP table (arp -a) and you will see all the subnets online devices and mac addresses.


[NOTE] This doesn't work on all networks, I just tested it. So your method is still valid.
« Last Edit: February 09, 2012, 02:28:52 pm by xor »

Offline silenthunder

  • Royal Highness
  • ****
  • Posts: 700
  • Cookies: 23
  • Anpan.
    • View Profile
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #7 on: February 09, 2012, 10:17:06 pm »
I use Net Tools 5, it has a wifi scanner app.


"Hacking is a lifestyle, a specific mindset, and it really is a lot of work." - Daemon

"Just wanted to state that this is just wicked social engineering at its best." - proxx

Offline neusbeer

  • Knight
  • **
  • Posts: 223
  • Cookies: 11
  • Beer makes you stronger XD
    • View Profile
    • http://www.facebook.nl/hackneus
Re: Finding IP addresses on the same wireless internet - HELP.
« Reply #8 on: February 10, 2012, 12:15:08 pm »
Cain & Able is capable to do this.
First Configure to choose your wifi card, then the + button for ARP scan. and results in a list of active connected devices. (in this example it's my router, not wifi :P )






When found, you can poison his connection and redirect his traffic ;)
« Last Edit: February 10, 2012, 12:16:24 pm by neusbeer »
--Neusbeer