Skip to content
john doe edited this page Dec 2, 2017 · 1 revision

Create HTML friendly view of nmap scan

scan and save output to XML (-n no resolution/-A discover/-F 100 common ports/-Pn no ping/-v verbose/-oX XML output)
#nmap -n -A -F -Pn -v -oX 192.168.0.0.nmap.xml 192.168.0.0/24

convert to HTML
#xsltproc 192.168.0.0.nmap.xml -o 192.168.0.0.nmap.html

Clone this wiki locally