pentest-distro-builder/filesystem/etc/skel/scripts/pingsweep.sh
root 1014ae3e39 Update Commit Update pingsweep 11-1-2018
Former-commit-id: 713f7efafacd248adebfbcaa3952ba3e1090b646
Former-commit-id: 76adfe46fc7bbd6da4ef800c0957807dadc48836
2018-11-01 14:52:48 -06:00

5 lines
117 B
Bash
Executable file

#!/bin/bash
for ip in $(seq 1 254); do
ping -c 1 172.30.0.$ip |grep "bytes from" |cut -d" " -f4|cut -d";" -f1&
done