You are on page 1of 2

Creating HTML Reports

Page 1 of 2

Nmap Security Scanner Intro Ref Guide Install Guide Download Changelog Book Docs Security Lists Nmap Hackers Nmap Dev Bugtraq Full Disclosure Pen Test Basics More Security Tools Pass crackers Sniffers Vuln Scanners Web scanners Wireless Exploitation Packet crafters More Site News Advertising About/Contact
Site Search

Intro Download In the Movies

Reference Guide Book Changelog Propaganda

Install Guide Related Projects In the News

Zenmap GUI Docs

Bug Reports OS Detection

Sponsors

Nmap Network Scanning


Creating HTML Reports

Chapter 13. Nmap Output Formats

Sponsors:

Creating HTML Reports


Nmap does not have an option for saving scan results in HTML, however it is possible to convert XML output to HTML automatically. An Nmap XML output file usually contains a reference to an XSL stylesheet called nmap.xsl that describes how the transformation takes place. The XML processing instruction that says where the stylesheet can be found will look something like
<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>

The exact location may be different depending on the platform and how Nmap was configured. Such a stylesheet reference will work fine when viewing scan results on the same machine that initiated the scan, but it will not work if the XML file is transferred to another machine where the nmap.xsl file is in a different place or absent entirely. To make the XML styling portable, give the --webxml option to Nmap. This will change the processing instruction to read
<?xml-stylesheet href="http://nmap.org/svn/docs/nmap.xsl" type="text/xsl"?>

The resultant XML output file will render as HTML on any web-connected machine. Using the network location in this fashion is often more useful, but the local copy of nmap.xsl is used by default for privacy reasons. To use a different stylesheet, use the --stylesheet <file> option. Note that --webxml is an alias for --stylesheet http://nmap.org/svn/docs/nmap.xsl. To omit the stylesheet entirely, use the option --no-stylesheet.

Saving a Permanent HTML Report


Here are commands that turn an Nmap XML output file into an HTML file using common XSLT processors. Sample output viewed in a web browser is shown in Figure 13.1, HTML from XML output in a web browser. xsltproc xsltproc <nmap-output.xml> -o <nmap-output.html>

http://nmap.org/book/output-formats-output-to-html.html

03/03/2014

Creating HTML Reports

Page 2 of 2

Saxon Saxon 9: java -jar saxon9.jar -s:<nmap-output.xml> -o:<nmap-output.html> Previous Saxon releases: java -jar saxon.jar -a <nmap-output.xml> -o <nmap-output.html> Xalan Using Xalan C++: Xalan -a <nmap-output.xml> -o <nmap-output.html> Using Xalan Java: java -jar xalan.jar -IN <nmap-output.xml> -OUT <nmap-output.html> Figure 13.1. HTML from XML output in a web browser

These programs automatically know where to load the stylesheet thanks to the embedded stylesheet reference. As a historical note, the stylesheet was originally intended to render the XML output as HTML by simply opening the XML file in a web browser. For a while it worked that way. But web browsers are implementing more and more severe same-origin restrictions that prevent XML files from loading except from narrowly limited locations. For example, Gecko, the rendering engine used by Mozilla, requires that the stylesheet be located in the same directory as or in a subdirectory of the XML file.

Output to a Database

Grepable Output (-oG)

[ Nmap | Sec Tools | Mailing Lists | Site News | About/Contact | Advertising | Privacy ]
Search

http://nmap.org/book/output-formats-output-to-html.html

03/03/2014

You might also like