1
Hacking and Security / Re: Finding IP addresses on the same wireless internet - HELP.
« on: February 09, 2012, 01:25:44 pm »
Or you can ping whole subnet by tiping:
windows:
linux:
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