upgrades to FIND_THE_FUCKING_PI

This commit is contained in:
2025-08-09 18:53:54 -06:00
parent 4c1d9a48d8
commit ffb4ff4822
+7 -3
View File
@@ -1,7 +1,11 @@
#!/bin/bash #!/bin/bash
subnet="10.0.0.0/24"
delay=60
count=0
while true; do while true; do
nmap -sV -Pn -T4 -p22 10.0.0.0/24 -oG - | grep -n '22/open/tcp' echo -e "\ndate $(date) count $count delay $delay subnet $subnet\n"
echo next nmap -sV -Pn -T4 -p22 $subnet -oG - | grep -n '22/open/tcp'
sleep 60 sleep $delay
count=$((count + 1))
done done