Skip to content

MITRE ATT&CK in Threat Hunting and Incident Response

MITRE ATT&CK is a publicly maintained knowledge base that catalogs the tactics, techniques, and procedures real adversaries use against enterprise and cloud environments. IR teams use it to map observed attacker behaviour, identify detection gaps with ATT&CK Navigator, and build hunting hypotheses and response playbooks grounded in documented threat intelligence.

Last updated:

Share

MITRE ATT&CK (Adversarial Tactics, Techniques, and Common Knowledge) is an open, community-maintained knowledge base that documents how real threat actors operate inside targeted environments. Organised as a matrix of tactics across the top and techniques beneath each tactic, the framework covers the full post-compromise lifecycle from initial access through execution, persistence, privilege escalation, defence evasion, credential access, discovery, lateral movement, collection, command and control, exfiltration, and impact. Each technique entry includes observed real-world examples, associated threat groups, suggested mitigations, and detection guidance with specific data sources. IR teams use the framework to translate raw forensic observations into a structured picture of adversary behaviour, to identify which parts of their detection capability are untested, and to prioritise both hunting and playbook development against the techniques most likely to be used by relevant threat actors.

The value of ATT&CK in incident response lies in its shared vocabulary. When an analyst in one country writes that the attacker used T1003.001 (OS Credential Dumping: LSASS Memory), analysts, vendors, and regulators anywhere in the world understand exactly what happened. This matters in multi-jurisdictional incidents, which are now routine: a European company breached via a US-hosted command-and-control server by a group attributed to a third country involves law enforcement in several legal systems, each of which may require different notification documentation. ATT&CK-structured incident reports translate across those boundaries more cleanly than narrative descriptions alone.

MITRE first published ATT&CK in 2015 as an internal research tool for documenting adversary behaviour observed in a network-monitoring research project. It became publicly available and has since grown into a widely adopted standard used by government agencies, commercial security vendors, and independent IR teams. MITRE updates the framework regularly, and the community contributes technique additions and refinements. As of Enterprise ATT&CK version 15, the matrix contains 14 tactics and more than 200 techniques, many with sub-techniques providing finer granularity. The framework is not a compliance checklist; it is a living threat model against which a team tests the real coverage of its detective controls.

By the end of this topic you will be able to:

  • Explain the structure of the MITRE ATT&CK matrix, including the distinction between tactics, techniques, and sub-techniques.
  • Use ATT&CK Navigator to map current detection coverage and identify gaps against a specific threat group profile.
  • Formulate a structured threat hunting hypothesis rooted in an ATT&CK technique, including the required data source and expected artefact.
  • Map attacker actions observed during an active incident to specific ATT&CK techniques and use that mapping to anticipate next-stage behaviour.
  • Describe how ATT&CK-aligned playbooks differ from generic runbooks and explain the role of the D3FEND counterpart framework.
Key terms
Tactic
The adversary's tactical goal at a given stage of an attack, represented as columns in the ATT&CK matrix. Examples include Persistence, Lateral Movement, and Exfiltration. Tactics answer the question of why an attacker performs an action.
Technique
A specific method an adversary uses to achieve a tactic. Each technique has a unique identifier such as T1059 (Command and Scripting Interpreter). Techniques answer the question of how an attacker achieves their goal.
Sub-technique
A finer-grained variation of a technique, identified with a decimal suffix such as T1059.001 for PowerShell under the Command and Scripting Interpreter technique. Sub-techniques allow analysts to be precise about which specific method was used.
ATT&CK Navigator
A free, browser-based visualisation tool from MITRE that renders the ATT&CK matrix as an interactive heat map. Teams use it to annotate techniques with colours representing detection coverage, alerting capability, or threat group attribution.
TTP (Tactics, Techniques, and Procedures)
The full description of how an adversary operates. Tactics are goals, techniques are methods, and procedures are the specific implementation details, such as the exact PowerShell command a group uses. ATT&CK codifies TTPs from observed attacks.
Threat group profile
An ATT&CK entry for a named threat actor, listing the techniques attributed to that group based on public reporting. Analysts use group profiles to prioritise detection of techniques relevant to adversaries who target their sector or region.

The ATT&CK matrix: tactics, techniques, and sub-techniques

The ATT&CK matrix organises adversary behaviour into a two-dimensional grid. The columns are the 14 tactics of Enterprise ATT&CK: Reconnaissance, Resource Development, Initial Access, Execution, Persistence, Privilege Escalation, Defense Evasion, Credential Access, Discovery, Lateral Movement, Collection, Command and Control, Exfiltration, and Impact. These represent the stages of a typical intrusion, though attackers rarely follow them in strict order. An attacker may return to earlier tactics repeatedly, for example establishing new persistence after each lateral movement step.

Each cell in the matrix is a technique. Some techniques are broad categories with multiple sub-techniques beneath them. T1059 (Command and Scripting Interpreter) covers the general category of script-based execution, while T1059.001 covers PowerShell specifically and T1059.003 covers Windows Command Shell. Working at the sub-technique level gives IR analysts precise language that maps directly to specific log sources and detection signatures. Reporting at the technique level is sometimes sufficient for executive communications or regulatory notifications; sub-techniques are the working currency of detection engineers and threat hunters.

Each technique entry on the ATT&CK website includes: a description of what the technique involves, observed real-world procedure examples attributed to specific groups, suggested mitigations, and detection guidance specifying which data sources (process monitoring, network traffic, authentication logs, and so on) are relevant. The detection section does not provide ready-to-use SIEM queries, but it tells analysts where to look and what patterns indicate the technique is in use. Platforms covered per technique tell analysts whether the technique applies to Windows, Linux, macOS, or cloud environments.

Using ATT&CK Navigator to map detection coverage

ATT&CK Navigator renders the full matrix as a colour-coded heat map that a team can annotate. The typical workflow for a coverage assessment starts by loading a blank Enterprise layer and then marking each technique with one of three states: currently alerting (a detection rule fires and generates an alert), currently visible (log data exists but no automated alert), or blind (no data source covers this technique). Colour coding by category makes gaps immediately visible without reading through hundreds of technique descriptions.

Navigator layer colourCoverage stateRecommended action
GreenAlerting: detection rule fires on this techniqueValidate rule quality and reduce false-positive rate
YellowVisible: log data exists, no alert ruleWrite a detection rule or hunting query
RedBlind: no log source covers this techniqueAcquire the data source or accept the risk formally
White (blank)Not assessedSchedule for assessment in next review cycle

Navigator also supports threat group overlay. MITRE publishes group profiles as JSON layer files. Loading a group layer marks all techniques attributed to that group, and overlaying it on your coverage map immediately highlights which of that group's techniques you can detect and which you cannot. A financial services firm concerned about a group known for targeting banking infrastructure can load that group's layer and see, in seconds, whether the techniques they favour are covered by existing rules.

Coverage assessments are most useful when repeated over time. Many teams run a quarterly Navigator review, comparing the current layer to the previous one to confirm that new detection work has moved techniques from red to yellow or green. The layer file format is JSON and can be stored in version control, which gives a historical record of how detection capability has changed. This record is useful both for internal governance and for demonstrating improvement to regulators or insurers following a security audit.

Forming threat hunting hypotheses with ATT&CK

Threat hunting is the proactive search for attacker activity that has not yet triggered automated alerts. An unstructured hunt, one that searches logs with no prior hypothesis, is usually unproductive because the search space is too large. ATT&CK provides the structure: each technique entry specifies data sources, which tells the hunter where to look, and the description of the technique tells the hunter what pattern to look for.

A well-formed hunting hypothesis follows this structure: given that adversaries use technique T[number] ([technique name]) to achieve tactic [tactic name], and given that this technique should produce [specific artefact] in [specific data source], we will search for [observable pattern] in [log or telemetry source] to determine whether this technique has been used in our environment. This format is borrowed from scientific hypothesis design and is more useful than a general suspicion because it produces a testable query and a clear result: either the pattern appears or it does not.

Hypotheses should be prioritised by threat relevance, not alphabetical order through the matrix. A useful prioritisation approach compares Navigator coverage gaps against the technique frequency reported in annual threat intelligence reports from CISA, ENISA, or commercial vendors. Techniques that appear repeatedly in the current year's intrusion reports and are currently in your blind or visible zone are the most urgent hunting targets. Techniques that are theoretically possible but have no recent attribution against your sector can be deprioritised.

Mapping observed behaviour during active IR

During an active incident, ATT&CK mapping serves two functions. First, it tells the analyst which tactic stage the attacker has reached and which techniques in adjacent tactics they should look for next. If the attacker has been observed using T1078 (Valid Accounts) for initial access and T1021.002 (Remote Services: SMB/Windows Admin Shares) for lateral movement, the analyst knows the attacker is in the Lateral Movement tactic and should look for Credential Access and Collection techniques that commonly follow. ATT&CK group profiles for the suspected threat actor show which techniques they typically chain together, giving the analyst a search roadmap.

Second, mapping produces documentation that travels well. An IR report that describes events as a sequence of ATT&CK technique IDs can be read by any security team in any country without relying on proprietary terminology. Under the EU's NIS2 Directive, significant incident reports to national Computer Security Incident Response Teams must describe the nature of the attack. An ATT&CK-structured technical annex satisfies this requirement and is also understood by the US Cybersecurity and Infrastructure Security Agency (CISA), the UK's National Cyber Security Centre (NCSC), and equivalents in Australia, Canada, and India. India's CERT-In requires incident reports within six hours of detection for a defined class of incidents; structured ATT&CK notation in the technical description reduces analyst time to draft those reports.

Mapping should happen as the investigation proceeds, not only at the end. Real-time mapping lets the IR team communicate attacker progress to stakeholders using consistent terminology and also feeds the containment decision. An attacker who has reached the Collection tactic has likely already accessed target data; containment at that point focuses on blocking exfiltration (the next tactic) rather than stopping collection that may already be complete.

Building ATT&CK-aligned playbooks

A playbook is a documented, step-by-step response procedure for a specific type of incident. Generic runbooks (investigate the alert, isolate the host, collect evidence) are useful starting points but leave too much to analyst judgment in high-pressure situations. ATT&CK-aligned playbooks are specific to a technique or technique cluster: the playbook for a suspected T1486 (Data Encrypted for Impact) event specifies exactly which systems to check first, which log sources to query, which indicators to collect, when to invoke legal counsel, and which regulatory notifications are triggered. The technique ID in the playbook title also connects the response procedure directly to the detection rule or hunting query that triggered it.

The companion MITRE D3FEND framework maps defensive techniques against ATT&CK offensive techniques. Where ATT&CK describes what attackers do, D3FEND describes the corresponding defensive countermeasure: for T1055 (Process Injection), D3FEND lists process lineage analysis and shadow stack comparisons as relevant defensive techniques. Using both frameworks together when building playbooks ensures that each response step has a grounding in both the attack behaviour and the defensive action that counters it.

Playbook testing matters as much as playbook writing. Many organisations conduct tabletop exercises using ATT&CK scenarios: a facilitator presents a sequence of attacker actions described as ATT&CK techniques, and the response team works through the playbook steps. These exercises reveal gaps in playbook logic, missing tool access, and ambiguous escalation criteria before an actual incident exposes them. CISA, ENISA, and the UK's NCSC all publish ATT&CK-structured scenario packs that teams can use directly or adapt.

ATT&CK beyond the enterprise perimeter: cloud, mobile, and ICS

The enterprise matrix originally focused on on-premises Windows environments but has expanded significantly. Cloud-specific techniques now cover AWS, Azure, GCP, Microsoft 365, and Google Workspace. Techniques such as T1537 (Transfer Data to Cloud Account) and T1530 (Data from Cloud Storage) are specific to cloud-hosted environments and require cloud-native log sources, such as AWS CloudTrail or Azure Monitor, rather than traditional endpoint telemetry. IR teams working in hybrid environments must maintain Navigator coverage layers separately for on-premises and cloud assets, as the data sources and detection approaches differ.

The ICS (Industrial Control Systems) matrix extends ATT&CK to operational technology environments such as power grids, water treatment facilities, and manufacturing systems. Techniques in this matrix, such as T0816 (Device Restart/Shutdown) and T0882 (Theft of Operational Information), reflect attacker behaviour specific to ICS protocols and hardware. IR teams supporting critical infrastructure clients need both the Enterprise and ICS matrices to cover the IT/OT boundary, which is where many sophisticated attacks transition from corporate networks into operational systems. The Triton/TRISIS malware incident, which targeted safety instrumented systems in the Middle East, is documented in the ICS matrix and illustrates the kind of physical consequence that ICS-specific techniques can enable.

The Mobile matrix covers Android and iOS, focusing on techniques relevant to mobile device management, application abuse, and network interception. It is less widely used in enterprise IR than the Enterprise matrix but becomes relevant in investigations involving corporate mobile device fleets, BYOD environments, or targeted surveillance of individuals. Law enforcement agencies in multiple countries, including the UK's National Crime Agency and India's Central Forensic Science Laboratory, have developed mobile forensics capabilities that complement the Mobile ATT&CK matrix for investigative attribution.

Check your understanding
Question 1 of 4· 0 answered

What is the relationship between a tactic and a technique in the MITRE ATT&CK framework?

Key Takeaways

  • ATT&CK organises adversary behaviour into 14 tactics and more than 200 techniques; tactics represent adversary goals and techniques represent specific methods, with sub-techniques providing the granularity needed for detection engineering.
  • ATT&CK Navigator colour-codes the matrix against your current detection capability, revealing blind zones and visible-but-unalerted techniques; overlaying threat group profiles turns the heat map into a prioritised remediation list.
  • Effective hunting hypotheses specify a technique, an expected artefact, and a concrete data source; ATT&CK technique entries provide all three components, reducing hypothesis formation from guesswork to structured derivation.
  • Real-time ATT&CK mapping during an incident tells the team which tactic stage the attacker has reached and which techniques to hunt for next, while producing structured documentation that satisfies notification requirements from CISA, NCSC, CERT-In, NIS2, and DORA simultaneously.
  • ATT&CK-aligned playbooks and the companion D3FEND framework connect each offensive technique to a specific defensive countermeasure; playbooks should be reviewed with each ATT&CK release and tested annually through tabletop exercises.
What is MITRE ATT&CK and how does it differ from a vulnerability database?
MITRE ATT&CK is a knowledge base of adversary tactics, techniques, and procedures (TTPs) observed in real-world attacks. It describes what attackers do after gaining access, such as credential dumping or lateral movement, rather than cataloging software flaws. A vulnerability database like CVE lists weaknesses in products; ATT&CK describes attacker behaviour that may or may not exploit those weaknesses.
What is ATT&CK Navigator and what does it produce?
ATT&CK Navigator is a free, browser-based tool from MITRE that lets teams colour-code individual techniques on the ATT&CK matrix. Teams use it to mark techniques they can currently detect, which reveals blank areas representing coverage gaps. The output is a heat-map layer file that can be shared across teams or compared against threat-group profiles to prioritise new detective controls.
How do IR analysts use ATT&CK during an active incident?
During an incident, analysts map each observed indicator or action to one or more ATT&CK techniques. This tells them which tactic phase the attacker has reached, what techniques in the same tactic they should hunt for next, and which techniques are commonly combined by the suspected threat group. Mapping also accelerates post-incident reporting by providing a standardised vocabulary understood by defenders, management, and regulators worldwide.
What is a threat hunting hypothesis and how does ATT&CK support it?
A threat hunting hypothesis is a specific, testable statement about attacker behaviour: for example, that an adversary has used LSASS memory access to dump credentials and those accesses will appear in Windows Security event logs. ATT&CK supports hypothesis formation by documenting the data sources and detection guidance associated with each technique, so hunters know both what to look for and where to look.
Is ATT&CK only relevant to Windows environments?
No. ATT&CK now covers Enterprise (Windows, macOS, Linux, cloud platforms including AWS, Azure, and GCP), Mobile (Android and iOS), and ICS (industrial control systems). Many techniques have platform-specific notes covering which operating systems or cloud services a given technique applies to and what the relevant log sources are.

Test yourself on Incident Response and Management with free, timed mocks.

Practice Incident Response and Management questions

Found this useful? Pass it along.

Share

Spotted an error in this page? Report a correction or read our editorial standards.

Your journey to becoming a forensic professional starts here.

Practice with mock tests, learn from structured notes, and get your questions answered by a global forensic community, all in one place.