Lesson 5 of 5 · 25 min read

Worked Example: Mapping a Real Intrusion to ATT&CK

Reading a CTI report and mapping it to ATT&CK is a core detection engineering skill. It turns a narrative — “the attacker did X then Y” — into a structured list of techniques you can build detections for.

This lesson walks through the process with a real intrusion. The DFIR Report published a Truebot analysis in 2023 that’s representative of how financially-motivated ransomware groups operate. We’ll map the key actions to ATT&CK, then build a Navigator layer.


The Process: Narrative → ATT&CK

The mapping process has four steps:

  1. Extract actions — What did the adversary do? Use verbs: “executed,” “downloaded,” “moved laterally to,” “dumped credentials from.”
  2. Identify the objective — What tactic does this serve? (Why did they do it?)
  3. Find the technique — What method did they use?
  4. Narrow to sub-technique — Is there a more specific variant?

Step 1: Read for Actions

From the Truebot intrusion, the key actions in the timeline:

- Phishing email with malicious .zip attachment received by user
- User opened attachment; Truebot DLL executed via regsvr32.exe
- PowerShell downloaded additional payload from C2
- Cobalt Strike beacon established persistent C2 channel
- Adversary ran net.exe commands to enumerate domain groups
- Adversary dumped LSASS process memory using ProcDump
- Adversary used SMB to move laterally to file server
- Clop ransomware deployed; files encrypted

Step 2 & 3: Map Actions to Techniques


Building the Navigator Layer

The full technique mapping for this intrusion:

Technique IDNameTacticConfidence
T1566.001Spearphishing AttachmentInitial AccessHigh
T1218.010Regsvr32Defense EvasionMedium
T1059.001PowerShellExecutionHigh
T1105Ingress Tool TransferC2Medium
T1055Process InjectionDefense EvasionMedium
T1007System Service DiscoveryDiscoveryLow
T1087Account DiscoveryDiscoveryMedium
T1003.001LSASS MemoryCredential AccessHigh
T1021.002SMB/Windows Admin SharesLateral MovementMedium
T1486Data Encrypted for ImpactImpactLow

In Navigator, color these by your detection confidence:

The resulting layer is a gap report for your detection program relative to this specific intrusion pattern.


Common Mapping Mistakes

The DFIR Report— DFIR Report blog — public incident post-mortems MITRE ATT&CK— MITRE ATT&CK Enterprise ATT&CK Navigator— MITRE ATT&CK