uaf-t3 / t3x

The cuddly waffle toolset for T3 Raspberry Pi image creation & maintance.
Other
4 stars 0 forks source link

netcat-openbsd #22

Open dayne opened 3 months ago

dayne commented 3 months ago

Want nc available to check if ports are open/responding for sanity.

dayne commented 3 months ago

example

# just directly check to see if 1883 (mqtt) is bound on any interfaces beyond localhost.
nc -vz localhost 1883  
for host in $(hostname -I); do 
   nc -vz $host 1883
done