structnmap

Crates.iostructnmap
lib.rsstructnmap
version0.1.0
sourcesrc
created_at2022-08-01 13:21:46.055709
updated_at2022-08-01 13:21:46.055709
descriptionThis is a tool for parsing nmap xml and structing it to files by service name
homepage
repositoryhttps://github.com/arg2u/structnmap.git
max_upload_size
id636772
size90,579
Airat Galiullin (arg2u)

documentation

README

Structnmap

This is a tool for parsing nmap xml and structing it to files by service name.

USAGE:
      $ structnmap <xml> <output>

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

ARGS:
      <xml> - Nmap xml file path
      <output> - Output directory

EXAMPLE:
      $ structnmap nmap.xml output
You can see an output sample in example directory in project repository

IN-CODE USAGE EXAMPLE:

use structnmap::{Data, Error};

fn main() -> Result<(), Error> {
    let test = Data::build("nmap.xml")?;
    test.generate("output")?;
    Ok(())
}
Commit count: 3

cargo fmt