October 29, 2019 · Basic Pen-Testing
2.2 : Essential Tools - Wireshark (Part III)
Wireshark
- Network packet sniffer
- Free, open source
- Can be used for commerical projects
- Cannot redistribute it to make profit
Common Usages
- Monitor current network interface traffic
- Follow TCP/UDP/SSL stream to find out malicious traffic
Recommended Tutorials
- Basic interface intro, filtering, following TCP stream etc.
- System admin usage tutorial
dvanced tcp scanning with nc
nc -nvv -w 1 -z 10.0.0.1 1-65535
advanced udp scanning with nc
nc -nvvu -w 1 -z 10.0.0.1 1-65535