2 releases
Uses old Rust 2015
0.1.1 | Nov 26, 2016 |
---|---|
0.1.0 | Nov 21, 2016 |
#10 in #cve
7KB
109 lines
cve-search
Rust library for searching database of security vulnerabilities. The library uses the web service provided by CIRCL
Usage
Available on crates.io
Add this to your Cargo.toml
[dependencies]
cvesearch = "0.1"
Example
extern crate cvesearch;
use cvesearch::CVESearch;
fn main() {
let cve = CVESearch::new();
// All vulnerabilities on Apache ActiveMQ
let vuls = cve.search(String::from("apache"), String::from("activemq")).unwrap();
let vuls_array = vuls.as_array().unwrap();
for results in vuls_array.iter() {
let obj = results.as_object().unwrap();
println!("{} - {}", obj.get("id").unwrap(), obj.get("summary").unwrap());
}
// See details: https://cve.circl.lu/cve/CVE-2016-5284
let vul = cve.get_cve("CVE-2016-5284".into()).unwrap();
let vul_obj = vul.as_object().unwrap();
println!("===> Summary {}", vul_obj.get("summary").unwrap());
// DBInfo, example: last time vendors db has been updated
let info = cve.db_info().unwrap();
let obj = info.as_object().unwrap();
println!("===> Vendors database updated at {}", obj.get("vendorU").unwrap());
}
License
Licensed under either of
- MIT license (see LICENSE or http://opensource.org/licenses/MIT)
- Apache License, Version 2.0 (see LICENSE or http://www.apache.org/licenses/LICENSE-2.0)
Dependencies
~6MB
~142K SLoC