From 91411b4b799226e2e579e638a4da04973c78a51a Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 9 Aug 2025 19:13:17 -0600 Subject: [PATCH] upgrades to FIND_THE_FUCKING_PI --- customscripts/FIND_THE_FUCKING_PI | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/customscripts/FIND_THE_FUCKING_PI b/customscripts/FIND_THE_FUCKING_PI index 9c9de33..6f868ed 100644 --- a/customscripts/FIND_THE_FUCKING_PI +++ b/customscripts/FIND_THE_FUCKING_PI @@ -1,11 +1,11 @@ #!/bin/bash subnet="10.0.0.0/24" delay=60 -count=0 +count=1 while true; do echo -e "\ndate $(date) count $count delay $delay subnet $subnet\n" - nmap -sV -Pn -T4 -p22 $subnet -oG - | grep -n '22/open/tcp' + nmap -sV -O -Pn -p22 $subnet -oG - | grep -n '22/open/tcp' sleep $delay count=$((count + 1)) done