Understanding the CIA Triad (and Why It Still Anchors Everything)
May 8, 2026 · 4 views
Every security certification — CISSP, CISM, CRISC, CCSP — assumes you have fully internalised the CIA triad. It looks almost too simple to dwell on, but the depth is in the trade-offs, and that is exactly where exams and real incidents test you.
The three properties
- Confidentiality — information is disclosed only to those authorised to see it. Enforced by encryption, access control, classification, and least privilege.
- Integrity — information is accurate and has not been altered improperly. Enforced by hashing, digital signatures, change control, and separation of duties.
- Availability — information and systems are accessible when needed. Enforced by redundancy, backups, capacity planning, and resilient architecture.
The trade-offs are the whole point
The triad is useful precisely because the three properties pull against each other. Lock data down with heavy encryption and rigid access control (high confidentiality) and you can harm availability — legitimate users wait, and a lost key can mean lost data. Maximise availability with wide replication and easy access, and you increase the confidentiality attack surface. Add aggressive integrity controls and change gates, and you slow the business down.
Good security is not maximising all three; it is balancing them according to context. A public marketing site prioritises availability and integrity over confidentiality. A trading system may prioritise integrity and availability with millisecond tolerances. A classified archive prioritises confidentiality above all. The correct balance is driven by the business impact analysis, not by a preference for "more security."
Extensions worth knowing
The classic triad is often extended. Two additions appear repeatedly on exams:
- Non-repudiation — a party cannot credibly deny having performed an action. Typically achieved with digital signatures, where only the signer holds the private key.
- Authenticity — confidence that data and identities are genuine.
Some models (the "five pillars," or the Parkerian hexad) add possession/control, utility and authenticity to round out cases the triad handles awkwardly. You do not need to worship any one model — you need to recognise which property is at stake in a given scenario and what control protects it.
Using the triad as a diagnostic
When you read an incident or an exam stem, name the property under threat first. Data was leaked? Confidentiality. Records were tampered with? Integrity. A ransomware attack froze operations? Availability (and often confidentiality too). Naming the property points you straight at the relevant control family — which is exactly the reasoning the certifications are trying to build.