-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasync_host_scan.rs
More file actions
41 lines (40 loc) · 1.22 KB
/
async_host_scan.rs
File metadata and controls
41 lines (40 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
fn main() -> Result<(), String> {
#[cfg(feature = "async")]
{
use e_libscanner::{async_scan, Opts};
use std::thread;
// more command information use: -h
let mut scanner = Opts::new(Some(&[
"e-libscanner",
"--ips",
"192.168.20.0/23",
"192.168.28-31.1-10",
"baidu.com",
"--model",
"async",
"--scan",
"icmp",
"--no-gui",
]))?
.init()?
.downcast::<async_scan::Scanner>()
.unwrap();
let rx = scanner.get_progress_receiver();
// Run scan
let handle = thread::spawn(move || async_io::block_on(async { scanner.scan(None).await }));
// Print progress
while let Ok(socket_addr) = rx.lock().unwrap().recv() {
println!("Check: {}", socket_addr);
}
let result = handle.join().unwrap();
// Print results
println!("Status: {:?}", result.scan_status);
println!("UP Hosts:");
let len = result.ips.len();
for host in result.ips {
println!("{:?}", host);
}
println!("Scan Time: {:?} count[ {} ]", result.scan_time, len);
}
Ok(())
}