#xml #nmap #csv #file #json #parser #file-path

bin+lib parsenmap

This is a tool for parsing nmap xml file to csv or json

2 releases

0.1.1 Aug 1, 2022
0.1.0 Jul 28, 2022

#9 in #nmap

35 downloads per month
Used in structnmap

MIT license

17KB
371 lines

Parsenmap

This is a tool for parsing nmap xml file to csv or json.

USAGE:
      $ parsenmap <from> <to> -f <filetype>

FLAGS:
      -h, --help - Prints help information
      -V, --version - Prints version information

OPTIONS:
      -f {filetype} - Output file format csv or json

ARGS:
      {from} - Nmap xml file path
      {to} - Output file path

EXAMPLE:
      $ parsenmap nmap.xml nmap.csv -f csv

IN-CODE USAGE EXAMPLE:

use parsenmap::models::scan::FileType;

fn main() {
    let scan:Scan = parsenmap::parse("nmap.xml").unwrap();
    scan.write_to_file(FileType::CSV, "nmap.csv".unwrap());
    let json:String =  scan.to_json();
    let csv:String =  scan.to_csv();
}

lib.rs:

Parsenmap

parsenmap is a tool for parsing nmap xml file to csv or json.

Dependencies

~5–6.5MB
~121K SLoC