Nmap扫描结果转换xml--->html
作者:互联网
nmap扫描后的xml结果,无法直接使用google等浏览器打开,这里需要转换成html。
工具
借助 xsltproc 和 nmap-bootstrap.xsl 进行转换。
xsltproc
linux自带
nmap-bootstrap.xsl 下载地址github: https://github.com/honze-net/nmap-bootstrap-xsl
过程
nmap扫描
保存格式为xml
nmap -P0 -T4 -F --open -oX result.xml
xsltproc利用
xsltproc -o result.html nmap-bootstrap.xsl result.xml
标签:xml,xsltproc,Nmap,bootstrap,---,nmap,result,xsl 来源: https://www.cnblogs.com/pangya/p/16300374.html