mkdocs/docs/network.md
francesco 103f51efdc
All checks were successful
continuous-integration/drone/push Build is passing
Add Structure and NC-Content
2021-05-03 00:08:07 +02:00

320 B

Network

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