Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 days 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 (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-13T02:40:13.000Z (5 months ago)
- Last Synced: 2024-09-15T09:40:26.219Z (2 months ago)
- Topics: dns, modern, network, rust, scan
- Language: Rust
- Homepage: https://thewh1teagle.github.io/blink/
- Size: 126 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- 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)