recon-cli 0.80.7

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
11
// Usage: recon --script netstatus
//
// Run the default probe set and print aggregate status.

let r = netstatus::check();
print(`${r.status} (${r.passed}/${r.total})`);
for p in r.probes {
    let icon = if p.passed { "✓" } else { "✗" };
    print(`  ${icon} ${p.label} — ${p.detail}`);
}
return if r.status == "ONLINE" { 0 } else { 1 };