CIA Triad · 01

Foundations of the Triad

Three letters that have outlived a dozen security paradigms. Before we use the model, we need to know what it actually claims, where it came from, and where it deliberately stops.

01

The Question Behind the Model

Every security decision answers the same question. What property of this asset are we trying to preserve, and against whom?

A locked filing cabinet, a TLS handshake, and an offsite backup tape have nothing in common at the implementation level. They share a purpose. Each one defends some property of information that, if lost, would harm the owner. The CIA Triad names the three properties worth defending in nearly every context, so that engineers, auditors, lawyers, and executives can talk about security using the same vocabulary.

The model does not tell you how to defend anything. It tells you what you are defending. That distinction is why the triad keeps reappearing in NIST standards, ISO 27000, HIPAA, PCI DSS, and every introductory cybersecurity textbook for the last forty years.

02

The Three Properties

The triad consists of three properties of information and the systems that handle it. Each has its own page in this subsection. The short definitions below are the working vocabulary you will use for the rest of the course.

The CIA Triad as an equilateral triangle An equilateral triangle with Confidentiality at the top vertex, Integrity at the bottom left, and Availability at the bottom right. Each vertex is labeled with a short definition. Confidentiality who is allowed to see it Integrity has it been changed Availability is it there when needed information the asset under protection
Figure 01 · The triad as an equilateral triangle. No pillar is more important than the others, and no pillar is independent of the others.

Confidentiality is the property that information is disclosed only to parties authorized to see it. The opposite of confidentiality is disclosure. The classic mechanisms are encryption, access controls, and classification.

Integrity is the property that information has not been modified except by parties authorized to modify it, and that any unauthorized modification can be detected. The opposite of integrity is unauthorized alteration. The classic mechanisms are hashing, digital signatures, and message authentication codes.

Availability is the property that information and the systems that handle it are accessible to authorized parties when they need them. The opposite of availability is denial. The classic mechanisms are redundancy, capacity planning, backups, and failover.

03

Where the Model Came From

The triad did not spring into existence in 1977 fully formed. The three properties were named separately in different contexts before being combined into a single model.

The three were grouped together in early NIST publications and reached canonical form in NIST SP 800-12 and FIPS 199, both of which define information security in terms of the triad. John McCumber's 1991 information security cube placed the triad on one of its three axes, cementing its place in security education.

Names you will hear

You may also see the triad written as "the three pillars of information security," "the AIC triad" (when authors want to lead with availability), or just "InfoSec basics." All three labels refer to the same model.

04

Why a Triangle

The choice to draw the model as a triangle rather than three bullet points was not arbitrary. A triangle is a geometry of interdependence. You cannot pull on one vertex without affecting the other two. That visual claim is also a technical claim: real security controls usually trade one pillar against another.

Consider an obvious example. Encrypting every file on a server with a key only the CEO knows maximizes confidentiality. It also destroys availability for everyone who is not the CEO, including the CEO once they lose the key. Pushing one corner pulls the others.

The full treatment of this idea is on the Tensions Between Pillars page. For now, hold onto the shape. When you encounter a security control later in this course, ask yourself which corner it strengthens and which it weakens. Almost every control does both.

05

What the Triad Does Not Cover

The CIA Triad is forty-eight years old, and the world it was built for is not the world we live in. Several real security concerns sit uncomfortably inside the model:

These edge cases motivated Donn Parker's 1998 Parkerian Hexad, which extends the triad with three additional properties. The hexad is covered in detail on its own page later in this subsection. For now, recognize that the triad is a starting point, not the whole map.

A caution about models

All models are wrong. Some are useful. The triad is one of the most useful models in cybersecurity, but no real incident is purely a confidentiality incident or purely an availability incident. Use the model to organize your thinking, not to box yourself in.

06

The Working Vocabulary

You will see the following terms repeatedly throughout Rolling Thunder Security. They are introduced briefly here so that the next pages can use them without stopping to define them.

TermWorking definition
AssetAnything of value that the organization wants to protect. Data, systems, personnel, reputation.
ThreatA circumstance or actor with the potential to cause harm to an asset.
VulnerabilityA weakness that a threat could exploit to harm an asset.
RiskThe expected harm from a threat exploiting a vulnerability. Roughly: likelihood times impact.
ControlA measure taken to reduce risk by addressing a threat, a vulnerability, or both.
IncidentAn event that does, or could, compromise one or more pillars of the triad.

From the next page onward, each pillar gets a deep dive. We will define it precisely, examine its mechanisms, look at how it fails, and walk through a real-world breach that demonstrates the failure.