VT3 provides an easy api interface to use VirusTotal v3 REST endpoints, including those exclusive to VirusTotal Enterprise such as - Live Hunt - Retro Hunt - Zip Files
Cargo.toml
toml
[dependencies]
vt3 = "0.3.4"
and then: to get ip information
```rust
use vt3::VtClient;
fn main() { let apikey = match std::env::args() .skip(1) .next() .okorelse(|| "Please provide the api key!") { Ok(apikey) => apikey, Err(e) => { println!("{:?}", e); std::process::exit(1) } }; let ipaddress = "5.2.69.42";
let vt_client = VtClient::new(&api_key);
match vt_client.ip_info(ip_address) {
Ok(report) => println!("{:#?}", report),
Err(e) => println!("Error: {}", e.to_string()),
}
} ```
License: MIT