Run it, read it, keep it.
Every script here is meant to be piped straight into a shell on a server you administer. Each one states plainly whether it changes anything. The default is: it doesn't — read-only checks, printed as a short, clear report.
Before you run a one-liner against a production box, open view source on it first. That's the whole trust model — no obfuscation, no hidden steps.
On the run command: it uses
curl -Ls, not -k. The -k flag skips TLS certificate verification, which would let anyone on the network path swap in a different script. Leave it off.
Verify before you run. Every script has a published SHA-256.
Download first, check the hash, then run:
curl -Ls -o netcheck.sh orynium.com/scripts/netcheck.sh
sha256sum netcheck.sh
# compare with SHA256SUMS, then: bash netcheck.sh
All hashes: SHA256SUMS
available scripts
bash <(curl -Ls orynium.com/scripts/netcheck.sh)
irm orynium.com/scripts/netcheck.ps1 | iex
coming next
more scripts land here as they're written