recon-cli 0.92.1

Versatile network reconnaissance CLI: HTTP/TLS/DNS, multi-protocol probes, and a Rhai script engine
Documentation
1
2
3
4
5
6
7
8
9
10
// Usage: recon --script whois [DOMAIN]
//
// Two-hop whois: IANA refer, then registry, plus registrar follow-up
// when present. Returns server + body.

let host = if args.len() > 1 { args[1] } else { "example.com" };
let r = whois(host);
print(`server: ${r.server}`);
print(`body:   ${r.body.len()} bytes`);
return 0;