Update README.md

This commit is contained in:
Jake Miller 2017-12-23 12:45:50 -06:00 committed by GitHub
parent 07f28c2e38
commit 974d403370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,21 @@
# Nmap-XML-Parser
Converts Nmap XML output to csv file, and other useful functions
## Usage
### Convert Nmap output to csv file
`python3 nmap_xml_parser.py -f nmap_scan.xml -csv nmap_scan.csv`
### Display scan information to the terminal
`python3 nmap_xml_parser.py -f nmap_scan.xml -p`
### Display only IP addresses
`python3 nmap_xml_parser.py -f nmap_scan.xml -ip`
### Display least common open ports
> Displays the 10 least common open ports
`python3 nmap_xml_parser.py -f nmap_scan.xml -lc 10`
### Display most common open ports
> Displays the 10 most common open ports
`python3 nmap_xml_parser.py -f nmap_scan.xml -mc 10`