recon-cli 0.94.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
11
12
13
14
15
16
// Demo: read, transform, write back to clipboard.
//
// Common workflow: copy something to your clipboard, run a recon script
// that processes it, get the result back in your clipboard.

let original = clipboard::get();
print("Read from clipboard: " + original);

// Rhai's String::trim is mutating (returns ()), so it can't be chained.
// Apply trim in-place on a local mutable copy, then convert via to_upper.
let buf = original;
buf.trim();
let transformed = buf.to_upper();
clipboard::set(transformed);

print("Wrote back: " + transformed);