nessus 0.5.1

Nessus Vulnerability Scanner API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate nessus;

use std::io;
use std::io::prelude::*;

fn main() {
    let mut buffer = String::new();
    io::stdin().read_to_string(&mut buffer).unwrap();

    let report = nessus::parser::parse(buffer).unwrap();
    println!("parsed: {:?}", report);
}