NMAP - Adam-Hachem/SEC335 GitHub Wiki

NMAP is a tool to gather information on network targets. Here are some tricks you can do with it

  1. Use -p to specify ports. You can specify ranges (ex: 1-6000) or give a list separated by commas (ex: 135,139,445,3389)

  2. -sV does a service scan. What this means is that NMAP will try to determine more information about the service that runs on an open port by its response.

  3. -A does OS Detection, Version Detection, Script Scanning and traceroute on the target. This generates a lot more information.