EvilZone
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Home
Help
Search
Login
Register
EvilZone
»
Hacking and Security
»
Hacking and Security
(Moderator:
RedBullAddicted
) »
Finding IP addresses on the same wireless internet - HELP.
Print
Pages: [
1
]
Author
Topic: Finding IP addresses on the same wireless internet - HELP. (Read 2395 times)
0 Members and 1 Guest are viewing this topic.
OneWayFloww
NULL
Posts: 2
Cookies: 0
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
Report to moderator
Logged
rucciva
/dev/null
Posts: 7
Cookies: 1
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
Report to moderator
Logged
--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
Report to moderator
Logged
ovi_x
Peasant
Posts: 98
Cookies: -21
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
Report to moderator
Logged
muminrz
NULL
Posts: 1
Cookies: 0
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
»
Report to moderator
Logged
t13ru
NULL
Posts: 3
Cookies: 0
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
»
Report to moderator
Logged
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
»
Report to moderator
Logged
silenthunder
Royal Highness
Posts: 700
Cookies: 23
Anpan.
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.
Report to moderator
Logged
"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
neusbeer
Knight
Posts: 223
Cookies: 11
Beer makes you stronger XD
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
)
When found, you can poison his connection and redirect his traffic
«
Last Edit: February 10, 2012, 12:16:24 pm by neusbeer
»
Report to moderator
Logged
--Neusbeer
Print
Pages: [
1
]
EvilZone
»
Hacking and Security
»
Hacking and Security
(Moderator:
RedBullAddicted
) »
Finding IP addresses on the same wireless internet - HELP.