Maascan

Asset Scanning with Masscan:

Masscan is an ultra-fast, open-source TCP and UDP port scanner.

  • Basic TCP Scan:

    masscan -p1-65535 <target>
  • Basic UDP Scan:

    masscan -pU:1-65535 <target>
  • Rate-Limited Scan (e.g., 10 packets per second):

    masscan -p1-65535 --rate 10 <target>

For more options and configurations, consult the Masscan documentation.

Last updated