mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 08:59:11 -06:00
Kaj Forney
a6d12f1ffc
Former-commit-id: 7bddceacd727c25153cd0ec03cf8b0d4011484d5 Former-commit-id: aaf57e63c1976b3960fee717c68c3b09dc1a94ff
15 lines
531 B
Bash
Executable file
15 lines
531 B
Bash
Executable file
#!/bin/bash
|
|
#----Zero the counter
|
|
counter=0
|
|
#----Start the loop for the 4th octect. Must start at 1 since 0 would be broadcast
|
|
for ip4 in $(seq 1 254); do
|
|
#----Start the loop for the 3rd octect. This sould start form 0
|
|
for ip3 in $(seq 0 254); do
|
|
#----Ping 1 time, look for bytes from to indicate sucessful ping
|
|
#----Echo the 4th field form the response which is the ip address
|
|
ping -c 1 10.1.$ip3.$ip4 |grep "bytes from" |cut -d" " -f4|cut -d";" -f1&
|
|
#echo 10.1.$ip3.$ip4
|
|
counter=$((counter+1))
|
|
done
|
|
done
|
|
echo $counter
|