Stratos Ally

Generating NMap report in lucid and detailed format

**Note: The content in this article is only for educational purposes and understanding of cybersecurity concepts. It should enable people and organizations to have a better grip on threats and know how to protect themselves against them. Please use this information responsibly.** 

  1. Scanning nmap normally. This generates huge traffic as Nmap will be performing ping sweep as well.

  1. So to avoid making additional requests to the targeting machine, we include the following flags in the command which generates detailed reports with less traffic and save the output in xml format.
    1. -v -> verbosity
    2. -Pn -> blocking ping sweep
    3. -n ->blocks reverse DNS lookup
    4. -p- -> scans all 65535 ports
    5. -sV -> service version
    6. -sC -> running default scripts
    7. -oX -> save the output in xml format

  1. Converting the report to .html extension using xsltproc so that the report can be viewed by the browser.

  1. The result shown here in firefox is organized and easier to understand because it is in GUI rather than the report we got in shell in step 2.

more Related articles