Files
general-scripts-and-system-…/customscripts/FIND_THE_FUCKING_PI
T
2025-08-09 16:14:02 -06:00

8 lines
128 B
Bash

#!/bin/bash
while true; do
nmap -sV -Pn -T4 -p22 10.0.0.0/24 -oG - | grep -n '22/open/tcp'
echo next
sleep 60
done