| Crates.io | nerve_host |
| lib.rs | nerve_host |
| version | 0.2.1 |
| created_at | 2021-02-21 14:00:10.137733+00 |
| updated_at | 2021-02-27 08:57:32.145823+00 |
| description | Cross-platform host scan library (for nerve ecosystem) |
| homepage | |
| repository | https://github.com/toref-sh/nerve |
| max_upload_size | |
| id | 358509 |
| size | 36,992 |
Security scan library with the aim of being lightweight and fast.
nerve provides a cross-platform API for network / security scan
(for security testing, network management, evaluation)
using Rust.
It is currently in alpha stage.
Add nerve to your dependencies
[dependencies]
nerve = "0.2.1"
PortScannerHostScannerUriScannerDomainScanner::new() returns a Scanner.::run_scan() Run scan with current settings.::scan_result::get_result() returns a scan resut.Port Scan Example
extern crate nerve_port;
use nerve_port::PortScanner;
use nerve_port::PortScanType;
use nerve_port::ScanStatus;
use std::time::Duration;
fn main() {
let mut port_scanner = match PortScanner::new(None, None) {
Ok(scanner) => (scanner),
Err(e) => panic!("Error creating scanner: {}", e),
};
port_scanner.set_target_ipaddr("192.168.1.92");
port_scanner.set_range(1, 1000);
port_scanner.set_scan_type(PortScanType::SynScan);
port_scanner.set_timeout(Duration::from_millis(10000));
port_scanner.run_scan();
let result = port_scanner.get_result();
print!("Status: ");
match result.scan_status {
ScanStatus::Done => {println!("Normal end")},
ScanStatus::Timeout => {println!("Timed out")},
_ => {println!("Error")},
}
println!("Open Ports:");
for port in result.open_ports {
println!("{}", port);
}
println!("Scan Time: {:?}", result.scan_time);
}
For more details see Examples
This library requires the ability to create raw sockets. Execute with root user privileges.