mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-16 15:20:09 -07:00
6a02a17902
Former-commit-id: e62f136f3677cb73bfa2d22f9ff10e8c0745bcc3
4 lines
124 B
Bash
Executable file
4 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
for ip in $(seq 1 254); do
|
|
ping -c 1 172.100.100.$ip |grep "bytes from" |cut -d" " -f4|cut -d";" -f1&
|
|
done
|