Glossary

MITRE ATT&CK Framework

Before 2013, security teams had no shared vocabulary for what attackers actually do after they get in. Vendors described threats by malware family, responders described them by incident, and the same behavior, say, credential dumping from LSASS memory, went by a dozen names across a dozen reports. MITRE…

Before 2013, security teams had no shared vocabulary for what attackers actually do after they get in. Vendors described threats by malware family, responders described them by incident, and the same behavior, say, credential dumping from LSASS memory, went by a dozen names across a dozen reports. MITRE ATT&CK started as an internal research effort (the Fort Meade Experiment, where MITRE documented adversary behavior on a live Windows network to test whether detection could improve) and was released publicly in 2015. It has since become the closest thing security operations has to a common language.

That origin matters for how the framework should be read. ATT&CK wasn’t designed as a compliance checklist or a marketing scoreboard. It was built to answer a working question: are we actually able to see the behaviors real adversaries use? Every practical application of the framework, from detection coverage mapping to triage context, still traces back to that question.

What Is the MITRE ATT&CK Framework?

The MITRE ATT&CK framework is a publicly available knowledge base that catalogs the tactics, techniques, and procedures adversaries use in real-world attacks, organized into matrices that map what attackers do at each stage of an intrusion. ATT&CK stands for Adversarial Tactics, Techniques, and Common Knowledge. Unlike a vulnerability database, which catalogs weaknesses in software, ATT&CK catalogs behaviors: the observable actions attackers take once they’re operating against a target.

The knowledge base is empirical rather than theoretical. Techniques enter ATT&CK because they’ve been observed in actual incidents and published reporting, and each entry cites the adversary groups and software known to use it. That evidentiary grounding is why the framework carries weight in board conversations and audit findings that a vendor taxonomy never could. It’s also why the framework lags reality slightly; a technique has to be seen and documented before it’s cataloged, which matters when you’re reasoning about novel behavior.

There are three matrices: Enterprise (covering Windows, macOS, Linux, cloud, identity, network, and containers), Mobile, and ICS for industrial control systems. Most SOC work centers on the Enterprise matrix, which currently organizes 14 tactics and more than 200 techniques, many with sub-techniques beneath them. MITRE updates the knowledge base on a regular release cycle, and the version history is public, so teams can track exactly what changed between releases.

Adoption is now broad enough that the framework functions as infrastructure. EDR and SIEM vendors tag their detections with technique IDs, intel reports map adversary activity onto the matrix as a matter of course, and regulators and cyber insurers increasingly encounter ATT&CK-based coverage claims in assessments. That ubiquity is self-reinforcing: because everyone else speaks in technique IDs, a SOC that doesn’t loses information at every interface, from the intel feed it reads to the incident report it writes.

How the ATT&CK Knowledge Base Is Organized

Tactics: The Adversary’s Why

Tactics are the columns of the matrix, and each one names a goal the adversary is pursuing at some point during an operation: Initial Access, Execution, Persistence, Privilege Escalation, Defense Evasion, Credential Access, Discovery, Lateral Movement, Collection, Command and Control, Exfiltration, and Impact, plus the preparatory tactics Reconnaissance and Resource Development. A tactic answers “what is the attacker trying to accomplish right now?”

The tactics are ordered roughly in the sequence an intrusion tends to follow, but real attacks don’t march left to right. Adversaries loop back, skip stages, and pursue several goals at once, which is one reason ATT&CK deliberately avoids presenting itself as a linear model. Teams that want stage-by-stage narrative structure usually pair ATT&CK with kill chain thinking, and automated approaches like kill chain mapping with AI do exactly that, placing observed techniques onto an attack progression to show how far an intrusion has advanced.

Techniques and Sub-Techniques: The How

Under each tactic sit techniques, the specific methods adversaries use to achieve the goal. Credential Access, for example, contains OS Credential Dumping, Brute Force, and Steal or Forge Kerberos Tickets, among others. Techniques subdivide further into sub-techniques where the variations matter operationally: OS Credential Dumping splits into LSASS Memory, Security Account Manager, NTDS, and several more, because detecting each variant requires different telemetry and different logic.

Every technique page documents the procedures (real-world implementations by named groups), the platforms affected, the data sources that can reveal it, and suggested mitigations and detections. This layered structure, tactic to technique to procedure, is exactly what security practitioners mean when they talk about TTPs, and it’s the level at which detection work gets concrete. Nobody writes a detection for “Credential Access”; they write one for LSASS memory access from an unsigned process.

Groups, Software, and Data Sources

ATT&CK also maintains linked catalogs of adversary groups (with the techniques each is known to use), the malware and tools they deploy, and the data sources defenders need in order to observe each technique. The data source mappings are quietly the most useful part for SOC planning. Before asking “do we detect this technique,” a team has to ask “do we even collect the telemetry that would show it,” and ATT&CK answers that question technique by technique.

The group profiles earn their keep during threat modeling. If your sector is targeted by a handful of named actors, their combined technique lists form a prioritized subset of the matrix, a much more honest starting point than trying to address all 200-plus techniques at once. And when new intel arrives attributing activity to a group, the profile tells you immediately which behaviors to go look for, which is a ready-made hypothesis list for threat hunting.

Putting ATT&CK to Work in the AI SOC Era

Coverage Heatmaps and Honest Gap Analysis

The most common operational use of ATT&CK is the coverage heatmap: color every technique by whether you can detect it, and the matrix becomes a visual map of where your defenses are real and where they’re assumed. MITRE’s free Navigator tool exists for exactly this. The workflow reality, though, is that hand-maintained heatmaps go stale within months. Detections break silently, log sources drop, and the heatmap keeps showing green because nobody re-tested the cell. Coverage claims need dates and evidence attached, or they’re decoration.

This is where AI-driven approaches change the practice. An AI SOC can maintain the technique-to-detection mapping continuously, cross-referencing which techniques appear in investigations against which detections actually fired, and flagging cells where coverage is claimed but never exercised. Systematic white space analysis takes it further, treating the uncovered regions of the matrix as a work queue ranked by threat relevance rather than as an uncomfortable poster on the SOC wall.

Triage Context and Investigation Language

ATT&CK earns its place in daily operations as a labeling system. When an alert arrives tagged with T1055 (Process Injection), an analyst immediately knows the behavior class, the likely adjacent techniques, and what to check next, without reading a vendor’s prose description. Agentic triage systems use the same labels as reasoning scaffolding: an AI investigation that identifies process injection can consult the matrix for the techniques that typically precede and follow it, then go verify whether those appear in the surrounding telemetry.

The shared vocabulary also fixes reporting. “We saw three intrusion attempts using T1566.001 and T1204.002” travels cleanly between the SOC, the intel team, an MSSP, and the board deck, where “we saw some phishing with bad attachments” does not. But tagging discipline matters; teams that tag loosely (everything vaguely suspicious becomes “Defense Evasion”) end up with metrics that look rigorous and mean nothing.

Driving Adversary Emulation and Purple Teaming

ATT&CK gives offensive exercises a defensible scope. A red team emulating a specific group’s documented techniques produces findings that map directly onto the coverage heatmap, and a purple team exercise can walk technique by technique, executing each one while defenders confirm in real time whether the telemetry and detections respond. The framework turns “we got in” into “you’re blind to these four specific behaviors,” which is something a detection backlog can act on.

One honest limitation: emulation validates the techniques you chose to test, on the day you tested them. It doesn’t prove coverage of the rest of the matrix, and it can’t cover procedures no one has documented yet. ATT&CK describes known adversary behavior; genuinely novel tradecraft is, by definition, not in the knowledge base yet.

Conifers CognitiveSOCâ„¢ uses ATT&CK as part of the evidence trail in its multi-tier investigations: findings are expressed against recognized techniques so that analysts, auditors, and downstream tooling can verify what was observed and why it was classified that way, with investigations completing in about 2.5 minutes on average. Teams evaluating this can see the technique mapping in practice at a live demo.

Frequently Asked Questions About the MITRE ATT&CK Framework

What is the difference between MITRE ATT&CK and the Cyber Kill Chain?

The Cyber Kill Chain, published by Lockheed Martin, is a linear seven-stage model of an intrusion from reconnaissance through actions on objectives. It’s a narrative structure: useful for explaining attack progression and for arguing that breaking any one stage breaks the attack. ATT&CK is a behavior catalog: non-linear, far more granular, and grounded in observed technique-level detail rather than stages.

In practice they complement each other. The kill chain answers “how far along is this attack,” while ATT&CK answers “exactly what did the attacker do and can we detect it.” Many SOCs tag evidence with ATT&CK techniques and then arrange those techniques on a kill chain timeline for briefings and incident narratives.

Is full ATT&CK coverage a realistic goal?

No, and chasing it is usually a misallocation. Some techniques can’t produce reliable detections without unacceptable false positive volume; some require telemetry your platforms don’t emit; and some are irrelevant to your environment entirely (container escape techniques matter little to an organization running no containers). MITRE itself cautions against treating the matrix as a checklist.

The defensible goal is prioritized coverage: strong detection for the techniques used by the actors that target your sector, on the platforms you actually run, validated by testing rather than asserted on a spreadsheet. A smaller set of proven detections beats a large set of assumed ones every time.

How often is the ATT&CK framework updated?

MITRE publishes major releases on a roughly twice-yearly cycle, typically in spring and fall, adding techniques, revising sub-techniques, and updating group and software profiles as new reporting is incorporated. Each release ships with public change logs. The operational implication is that ATT&CK-mapped artifacts, detection mappings, heatmaps, and triage tags need a review step after each release, because technique IDs occasionally get deprecated, merged, or restructured. Teams that hardcode technique IDs into tooling without a version-update habit accumulate quiet drift.

Where does ATT&CK fall short or not apply?

ATT&CK documents observed adversary behavior, so it inherently trails the newest tradecraft; a technique invented last month isn’t in the matrix, and defenses scoped strictly to the framework will miss it. It also says little about fraud, insider misuse that never touches a cataloged technique, and much of the social engineering that happens outside technical telemetry. And the framework describes behaviors, not priorities: it can’t tell you which techniques matter most to your business, only which exist.

It’s also worth knowing that MITRE maintains companion resources for what ATT&CK deliberately leaves out: D3FEND catalogs defensive countermeasures, and ATT&CK’s own mitigations describe preventive controls, but neither substitutes for judgment about your environment. Treat ATT&CK as a map of known adversary behavior, incomplete at the frontier, and pair it with behavioral and anomaly-based detection for what the map doesn’t show. Teams that internalize that boundary get enormous value from ATT&CK; teams that mistake the map for the territory build confident blind spots.

← Back to Resources
See it live

Watch an agent investigate a real alert.

CognitiveSOC™ runs the investigation end-to-end on top of your existing SIEM, SOAR and XDR, and shows its work.