netcat
nc [options] host portudp:
nc -u host portPort Scanning:
nc -z -v 10.10.8.8 20-80. The-zoption will tell nc to only scan for open ports, without sending any data to them and the-voption to provide more verbose information.nc -z -v 10.211.55.2 8070-8080 2>&1 |grep succeededUDP Port Scanning:
nc -z -v -u 10.10.8.8 20-80
Last updated
Was this helpful?