使用nmap-converter將nmap掃描結果XML轉化爲XLS實戰python
做爲網絡安全從業人員,有時候須要使用端口掃描利器nmap進行大批量端口掃描,但Nmap的輸出結果爲.nmap、.xml和.gnmap三種格式,還有夾雜不少不須要的信息,處理起來十分不方便,而將輸出結果轉換爲Excel表格,方面處理後期輸出。所以,有技術大牛分享了將nmap報告轉換爲XLS的Python腳本。git
1)項目地址: https://github.com/mrschyte/nmap-convertergithub
2)環境要求安全
(1)Python(本次測試的python2.7)網絡
(2)依賴python模塊:python-libnmap、XlsxWriter,安裝:pip install python-libnmap、pip install XlsxWriterpython2.7
3)使用方法:nmap-converter.py [-h] [-o XLS] XML [XML ...]ide
示例:nmap-converter.py -o test.xlsx test.xml測試
(test.xlsx爲轉化後的Excel,test.xml爲nmap輸出xml格式結果)xml
1)準備文件網絡安全
將python轉換腳本nmap-converter.py、nmap掃描輸出的xml文件test.xml放在同一個目錄下,如圖1所示:
圖1 nmap-converter.py、test.xml放在同一個目錄下
2)打開cmd,執行:nmap-converter.py -o test.xlsx test.xml,如圖2所示:
圖2執行:nmap-converter.py -o test.xlsx test.xml
3)轉換結果
轉換完成後,在目錄中生成了一個test.xlsx文件,如圖3所示:
圖3 生成的test.xlsx文件
結果如圖4所示,可以使用Excel進行處理了。
圖4 Excel結果