The Security Standards Every Sysadmin Should Actually Know: NIST, ISO 27001, CIS, OWASP, and MITRE ATT&CK
Security work references a specific, small set of standards bodies constantly, in audits, in compliance requirements, and in the hardening guides experienced admins actually use. Knowing what each one actually covers, and where to find the real documents rather than a summary blog post, is worth having straight. Here are the ones that matter most, with direct links.
The two most commonly cited frameworks
- NIST Computer Security Resource Center: the source for the NIST Cybersecurity Framework (CSF) and the SP 800 series, including SP 800-53 (security controls for federal systems, widely adopted well beyond government) and SP 800-171 (protecting controlled unclassified information, relevant to any organization in the US defense supply chain). This is also where cryptographic standards like AES and SHA get formally specified.
- ISO/IEC 27001: the international standard for information security management systems (ISMS). Getting “ISO 27001 certified” as an organization means passing a real third-party audit against this specific document, not just a general security posture claim.
Hardening baselines you can apply directly, today
CIS (Center for Internet Security) publishes the CIS Benchmarks: specific, actionable hardening configurations for individual operating systems, applications, and cloud platforms (a “CIS Benchmark for Windows Server 2022” or “CIS Benchmark for Ubuntu 24.04” tells you exactly which settings to change, with the reasoning for each). CIS also maintains the CIS Critical Security Controls, a prioritized list of the highest-impact defensive actions an organization can take. Unlike the broader frameworks above, these are genuinely something you can open and start applying to a server this afternoon.
Application and payment security
- OWASP (Open Worldwide Application Security Project): the OWASP Top 10 is the standard reference for the most critical web application security risks, and OWASP’s testing guides are widely used baselines for application security assessments.
- PCI Security Standards Council: maintains PCI DSS, the standard that governs how any organization handling credit card data must secure it, non-optional if you process payments.
Understanding how attackers actually operate
MITRE ATT&CK is a freely available, continuously updated knowledge base of real-world attacker tactics and techniques, organized so defenders can map what they’re seeing in an investigation (the kind of Exchange or Active Directory compromise-tracing work covered elsewhere on this site) to a documented, named technique with known detection and mitigation guidance, rather than treating every incident as a one-off mystery.
Telecommunications and cryptographic protocol security
ITU-T maintains X.509, the standard defining the digital certificate format underneath TLS and most PKI systems in use today. Every time a browser validates an HTTPS certificate, it’s checking conformance to an X.509 structure.
Frequently asked questions
If I only apply CIS Benchmarks, do I still need to worry about ISO 27001 or NIST CSF?
CIS Benchmarks are technical configuration standards, they tell you how to harden a specific system. ISO 27001 and NIST CSF are management frameworks, they govern the overall process (risk assessment, policy, continuous improvement) an organization uses to decide what needs hardening and verify it stays that way. They operate at different levels and are meant to complement each other, not substitute for one another.
Where do I actually find a CIS Benchmark for the systems I manage?
Directly from CIS at cisecurity.org, free to download after a simple registration (a paid CIS-CAT tool exists for automated scoring, but the benchmark documents themselves are free). Always pull the current version for your exact OS/application version rather than an older cached copy, since benchmarks are revised as new versions and new attack techniques emerge.
