nvd
Some functions about CPE and CVE
Usage
Add this to your Cargo.toml:
toml
[dependencies]
nvd = "0.1"
Examples
```rust
use std::{env, process};
use nvd::{
cpe::{downloadcpe, makecpedictionary, makecpetitle},
cve::{
cpe23urilisttostring, cpematch, initdir, loaddb, makedb, synccve, Cpe23Uri,
DATADIR,
},
log::loginit,
};
[tokio::main]
async fn main() -> Result<(), Box> {
log_init();
let args: Vec = env::args().collect();
if args.len() != 2 {
log::error!("arguments error!");
log::error!("eg: {} [cve|cpe]", args[0]);
process::exit(1);
}
if "cve".eq(&args[1]) {
cve().await?;
} else if "cpe".eq(&args[1]) {
cpe().await?;
} else {
log::error!("arguments error!");
log::error!("eg: {} [cve|cpe]", args[0]);
}
Ok(())
}
async fn cve() -> Result<(), Box> {
let pathdir = initdir(DATADIR).await?;
let _ = synccve(&pathdir).await?;
let _ = makedb(&pathdir).await?;
let dblist = loaddb(&pathdir).await?;
log::info!("dblist len: {}", dblist.len());
let mut cpe23urivec = Vec::new();
let line = "cpe:2.3:a:vmware:rabbitmq:3.9.10:::::::*";
let cpe23uri = Cpe23Uri::new(line);
cpe23urivec.push(cpe23uri);
log::info!("cpe23uri: {}", cpe23urilisttostring(&cpe23urivec));
cpematch(&cpe23urivec, &db_list).await?;
Ok(())
}
async fn cpe() -> Result<(), Box> {
downloadcpe().await?;
makecpedictionary().await?;
makecpe_title().await?;
Ok(())
}
```