Saving scan results in an XML format

Extensible Markup Language (XML) is a widely known, tree-structured file format supported by Nmap. Scan results can be exported or written into an XML file and used for analysis or other additional tasks. This is one of the most preferred file formats, because all programming languages have very solid libraries for parsing XML.

The following recipe teaches you how to save the scan results in an XML format.

How to do it...

To save the scan results to a file in the XML format, add the option -oX <filename>, as shown in the following command:

# nmap -A -O -oX scanme.xml scanme.nmap.org

After the scan is finished, the new file containing the results will be written:

$cat scanme.xml <?xml version="1.0"?> <?xml-stylesheet ...

Get Nmap 6: Network Exploration and Security Auditing Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.