mirror of https://github.com/E-Almqvist/wwmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
534 B
28 lines
534 B
mod cli;
|
|
mod ipv4;
|
|
mod scanner;
|
|
mod util;
|
|
|
|
use std::time::Duration;
|
|
|
|
use clap::Parser;
|
|
use cli::Args;
|
|
use ipv4::IPv4Range;
|
|
use scanner::start_scan;
|
|
|
|
fn main() {
|
|
// Init the logger
|
|
env_logger::init();
|
|
|
|
// Get the CLI arguments
|
|
let args = Args::parse();
|
|
|
|
// Get the IP range
|
|
let range = IPv4Range::from_cidr(args.cidr, None);
|
|
|
|
// Timeout duration
|
|
let timeout = Duration::new(args.timeout, args.timeout_ns);
|
|
|
|
// Start the scan
|
|
let _results = start_scan(range, args.port, args.threads, timeout);
|
|
}
|
|
|