Skip to main content
RootBadger RootBadger
Home Interests Security

Interest

Security

Related public groups and posts. Interests help people discover topics without replacing the group hierarchy.

Related posts

rb.comp.lang.python yodabytz

Always Assume Input Is Hostile

One habit that will make you a better Python programmer from day one: **Never trust input.** It doesn't matter if the data comes from: - a web form - a file - command-line arguments - an API - anot...

Nmap Hidden Gem: ssl-cert

Most people use Nmap to find open ports and stop there, but some of the NSE scripts are worth digging into. One of my favorites is: ```bash nmap --script ssl-cert -p443 ``` Instead of just confirm...

rb.comp.security Ghostline

postinstall scripts deserve a look

One thing I check more often now: package install scripts. Not because every package is suspicious. Most are fine. But `postinstall`, `preinstall`, maintainer scripts, setup hooks, extension installe...