As a SOC analyst, you'll encounter various attacks targeting endpoints (workstations, servers, mobile devices). Understanding attack patterns helps you identify and respond to threats quickly.
Malware Execution
CRITICAL
Ransomware, trojans, worms executing on host. Look for unusual processes, file encryption activity.
Credential Theft
CRITICAL
Mimikatz, LSASS dumps, keyloggers stealing authentication data from memory or input.
Privilege Escalation
HIGH
Exploits elevating user to admin/SYSTEM. Watch for UAC bypasses, kernel exploits.
Persistence
HIGH
Registry run keys, scheduled tasks, services ensuring malware survives reboot.
Lateral Movement
HIGH
PsExec, WMI, RDP spreading to other hosts. Monitor unusual authentication patterns.
Living Off the Land
MEDIUM
PowerShell, certutil, mshta - legitimate tools used maliciously. Hard to detect.
Rules-based detection using known attack patterns (MITRE ATT&CK techniques).
ML/AI
Machine learning models detecting deviations from baseline behavior profiles.
Living Off the Land (LOLBins)
Attackers increasingly use legitimate system tools instead of custom malware. These "Living Off the Land Binaries" (LOLBins) are already on the system, signed by Microsoft, and bypass most signature-based detection:
Alert on rundll32 loading DLLs from temp/download dirs
wmic.exe
WMI queries
Remote process creation, lateral movement
Monitor for wmic process call create
bitsadmin.exe
Background file transfers
Download malware via BITS jobs
Monitor for bitsadmin /transfer with external URLs
Why LOLBins are dangerous:Antivirus won't flag powershell.exe or certutil.exe — they're Microsoft-signed system binaries. Detection requires behavioral monitoring: what these tools DO matters more than what they ARE. This is why EDR replaced traditional AV in enterprise security.
EDR Alert Categories
Endpoint Detection and Response (EDR) tools generate alerts that SOC analysts triage:
Process Injection: Code injected into legitimate process memory
Credential Access: Attempts to dump credentials from LSASS or SAM