Skip to content

CTI Analysis: Hunting Defense Evasion & Lateral Movement (T1055, T1021)

1. Blinding the SOC: Defense Impairment & Indicator Removal

Section titled “1. Blinding the SOC: Defense Impairment & Indicator Removal”

Before moving laterally, sophisticated adversaries ensure their tracks are covered. With the release of ATT&CK v19 (April 2026), MITRE formally separated passive stealth from active sabotage.

(Formerly T1562 - Impair Defenses) Modern ransomware operators and APTs actively target Endpoint Detection and Response (EDR) agents. They utilize “Bring Your Own Vulnerable Driver” (BYOVD) attacks to gain kernel-level access and terminate EDR processes or blind their telemetry pipelines.

  • DFIR Pivot: Analysts must monitor for the unexpected cessation of Sysmon Telemetry or sudden service termination events (Event ID 7036) affecting known security services.

B. Indicator Removal: Clear Windows Event Logs (T1070.001)

Section titled “B. Indicator Removal: Clear Windows Event Logs (T1070.001)”

Erasing the flight recorder is the oldest trick in the anti-forensics playbook. Adversaries use wevtutil cl or PowerShell’s Clear-EventLog to wipe their execution history.

  • The Telemetry: As detailed in our EVTX Analysis Guide, the act of clearing a log generates an indelible alert.
  • Hunting Focus: Alert immediately on Security Event ID 1102 (The audit log was cleared) and System Event ID 104. If these events trigger outside of an authorized IT maintenance window, it is definitive proof of an active, highly privileged intrusion.

2. The Invisible Threat: Process Injection (T1055)

Section titled “2. The Invisible Threat: Process Injection (T1055)”

To evade process-based firewalls and application whitelisting (Stealth - TA0005), attackers avoid running custom binaries directly. Instead, they inject their malicious code into the memory space of a legitimate, running Windows process.

As explored in our comprehensive Process Injection Foundations, this technique fundamentally breaks traditional process lineage (Event 4688) monitoring.

Dynamic Resolution & Injection

Attackers use APIs like VirtualAllocEx and WriteProcessMemory to push their payload (e.g., a Cobalt Strike beacon) into processes like explorer.exe or svchost.exe. Hunting Focus: Monitor Sysmon Event ID 8 (CreateRemoteThread) and Sysmon Event ID 10 (ProcessAccess). Any non-system process opening a highly privileged handle to a core Windows binary is suspect.

Advanced Evasion (Next-Gen)

To bypass EDR API hooking, modern adversaries utilize Module Stomping and Memory Mirroring. DFIR Pivot: Live response memory forensics is required. Analysts must use Volatility 3 (e.g., the windows.malfind plugin) to locate executable memory pages (PAGE_EXECUTE_READWRITE) that are unbacked by files on disk.

3. Spreading the Infection: Remote Services (T1021)

Section titled “3. Spreading the Infection: Remote Services (T1021)”

Lateral Movement is the mechanism by which a localized breach escalates into a total domain compromise. Adversaries overwhelmingly prefer to “Live off the Land” by abusing native Windows remote administration protocols.

Server Message Block (SMB) is the silent, scriptable weapon of choice. Threat actors leverage stolen credentials to access hidden administrative shares (C$, ADMIN$).

When adversaries require graphical interaction (e.g., to manually disable an antivirus GUI or interact with a complex business application), they pivot to RDP.

  • The Telemetry: As outlined in our SMB vs. RDP Playbook, RDP leaves loud, highly visible traces. Analysts must hunt for Event 4624 (Logon Type 10 - RemoteInteractive).
  • DFIR Pivot: For a comprehensive timeline, investigate the Remote Desktop Services (RDS) Operational Logs (Events 21, 24, 25) to determine exactly when the attacker connected, disconnected, and reconnected to the hijacked session.

4. Detection Engineering (Actionable Queries)

Section titled “4. Detection Engineering (Actionable Queries)”

Deploy the following queries in your SIEM to proactively hunt for the destruction of forensic evidence and the primary vectors of lateral movement.

hunt_t1070_log_wiping.kql
// Mitre ATT&CK: T1070.001 (Clear Windows Event Logs)
// Detects the deletion of critical Windows event logs, a massive anti-forensic red flag.
SecurityEvent
| where EventID == 1102 or EventID == 104
| project TimeGenerated, Computer, Account, EventID, Activity
// Join with Process Creation to see what ran immediately prior to the wipe
| join kind=leftouter (
SecurityEvent
| where EventID == 4688
| project ProcessTime = TimeGenerated, Computer, Account, ProcessCommandLine
) on Computer, Account
| where ProcessTime between ((TimeGenerated - 5m) .. TimeGenerated)
| sort by TimeGenerated desc

Hunting for Defense Evasion and Lateral Movement requires an analyst to shift from looking at what is executing to how the environment is behaving. A single cleared log file, a sudden spike in SMB traffic to the ADMIN$ share, or an unbacked executable memory page are the silent alarms of a network under active siege.

By combining the methodologies detailed across this MITRE ATT&CK series—from Initial Access and Persistence to Lateral Movement—DFIR teams can construct a comprehensive, interlocking web of detection that traps adversaries at every stage of their operation.