| Crates.io | blinkscan |
| lib.rs | blinkscan |
| version | 0.1.2 |
| created_at | 2024-06-13 01:37:58.94484+00 |
| updated_at | 2024-06-13 02:02:29.2512+00 |
| description | Network scanner in speed of a blink |
| homepage | |
| repository | https://github.com/thewh1teagle/blink |
| max_upload_size | |
| id | 1270147 |
| size | 87,859 |
Blink is a lightweight, fast, and cross-platform network scanning tool that operates without requiring admin privileges.
For installation instructions, visit the Blink Website.
cargo build --release
blink --help
blinkscancargo add blinkscan
main.rsfn main() {
let interface = blinkscan::get_default_interface().unwrap();
let network = blinkscan::create_network(&interface);
for host in blinkscan::scan_network(network, std::time::Duration::from_secs(3)) {
println!("{:?}", host);
}
}