https://github.com/thewh1teagle/blink
Scan your network faster than you can blink your eyes!
https://github.com/thewh1teagle/blink
dns modern network rust scan
Last synced: 10 months ago
JSON representation
Scan your network faster than you can blink your eyes!
- Host: GitHub
- URL: https://github.com/thewh1teagle/blink
- Owner: thewh1teagle
- Created: 2024-06-12T18:57:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-20T09:35:56.000Z (over 1 year ago)
- Last Synced: 2025-06-10T00:17:29.056Z (about 1 year ago)
- Topics: dns, modern, network, rust, scan
- Language: Rust
- Homepage: https://thewh1teagle.github.io/blink/
- Size: 137 KB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blink
Blink is a lightweight, fast, and cross-platform network scanning tool that operates without requiring admin privileges.
# Features
- đ Fast: thanks to rust, blink scan 255 targets in 1-2 seconds.
- đĨī¸ Cross-platform: Works seamlessly on macOS, Windows, and Linux.
- đ No admin rights required: Run Blink without needing administrative permissions.
- âšī¸ Useful information: Provides details such as host vendor names, IP addresses, MAC addresses, and even hostnames.
# Installation
For installation instructions, visit the [Blink Website](https://thewh1teagle.github.io/blink/).
# Build
```console
cargo build --release
```
# Usage
```console
blink --help
```
# Use as a library
1. Install `blinkscan`
```console
cargo add blinkscan
```
2. Include in `main.rs`
```rust
fn 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);
}
}
```
# GUI
See [thewh1teagle/Ruscan](https://github.com/thewh1teagle/Ruscan)