Threat Intel

MITRE ATT&CK Guide

10 min read

MITRE ATT&CK is a knowledge base of adversary tactics and techniques based on real-world observations. It's the universal language for describing cyber threats.

Key Concepts

Tactics Overview

ReconnaissanceGathering information
Initial AccessGetting in (phishing, exploits)
ExecutionRunning code
PersistenceMaintaining access
Privilege EscalationGetting higher permissions
Defense EvasionAvoiding detection
Credential AccessStealing passwords
Lateral MovementMoving through network
CollectionGathering target data
ExfiltrationStealing data
Command & ControlCommunicating with malware

Mapping to Detections

# T1059.001 - PowerShell
# Detection: Encoded commands
index=windows EventCode=4104
| regex ScriptBlockText="(?i)encodedcommand|frombase64"
| eval technique="T1059.001"

# T1053.005 - Scheduled Task
# Detection: Task creation
index=windows EventCode=4698
| eval technique="T1053.005"
Using ATT&CK

December 2024