1 2 3 4 5 6 7 8 9
use iocutil::prelude::*; fn main() { let hashes: Vec<_> = SampleHash::scrape("https://www.malware-traffic-analysis.net/2019/05/20/index.html") .unwrap(); hashes.into_iter().for_each(|x| println!("{}", x)); }