mkdocs/docs/netcat.md
francesco 9aab550a91
All checks were successful
continuous-integration/drone/push Build is passing
Refactor Network
2021-05-24 15:39:23 +02:00

306 B

Netcat

Manual man nc

Port Scanning

scan a single port

nc -v -w 2 z 192.168.56.1 22

scan multiple ports

nc -v -w 2 z 192.168.56.1 22 80

scan range of ports

nc -v -w 2 z 192.168.56.1 20-25

Find a Service Running on Port

nc -v -n 192.168.56.110 80