Operator On The Wire
Join
← Back to Knowledge Base
BLUE TEAM / THREAT HUNT / WINDOWS / EXFILTRATION

LSASS Dumping

This note documents detection patterns related to LSASS Dumping within Windows environments.


Direct Indicators

LogEvent IDMeaningForensic ValueNotes
Sysmon10Process accessCriticalPrimary signal for LSASS handle access and dump preparation.
Security4688Process creationCriticalDetects dump tooling and command-line arguments.
Sysmon1Process creationCriticalBest execution source for dump tools and parent lineage.
Sysmon11File createCriticalCaptures dump files (.dmp, .tmp, renamed outputs).
Security4673Sensitive privilege use attemptedHighOften shows SeDebugPrivilege usage.
Security4674Privileged object operationHighSensitive process interaction.
Sysmon7Image loadedMediumUseful when dump libraries load unexpectedly.
Security4656Handle requestedHighLSASS object handle requests if auditing enabled.

Indirect Indicators

IndicatorWhat To Look ForForensic ValueNotes
Access to lsass.exe with high rights0x1fffff, 0x1010, 0x1410CriticalStrong dump indicator.
Dump file in Temp/AppData.dmp outside admin workflowCriticalCommon attacker staging.
Procdump / rundll32 / comsvcs usageKnown dump methodsCriticalCommon offensive chain.
Silent dump then archiveDump followed by zip/7zCriticalExfil preparation.
LSASS access by unsigned binaryNon-standard process opens LSASSCriticalVery strong malicious signal.
Service context dumpSYSTEM process dumpHighPersistence-linked credential theft.

Common Tools

ToolUsage
procdump.exeLSASS memory dump
rundll32.execomsvcs.dll MiniDump
taskmgr.exeManual dump
Process ExplorerDump via GUI
mimikatzDirect credential extraction
custom dumpersDirect API dumping
PowerShellInvoke dump wrappers

Relevant Artifacts

  • Sysmon Event IDs 10, 1, 11
  • Security Event IDs 4688, 4673, 4674, 4656
  • Dump files:
    • .dmp
    • .tmp
  • Prefetch: PROCDUMP.EXE, RUNDLL32.EXE, TASKMGR.EXE
  • Amcache for dump tooling
  • ShimCache traces
  • MFT / USN for dump file timeline
  • EDR handle telemetry
  • LSASS access lineage

MITRE ATT&CK References

  • T1003.001 LSASS Memory
  • T1003 OS Credential Dumping
  • T1134 Access Token Manipulation

Decision Tree

  1. Which process accessed LSASS?

    • Signed?
    • Parent process
  2. Granted access suspicious?

    • Full access
    • Read + duplicate
  3. Dump file created?

    • Path
    • Timestamp
    • Naming
  4. Follow-up activity?

    • Archive
    • Exfiltration
    • Credential parsing
  5. Expand:

    • SeDebugPrivilege
    • Token abuse
    • Lateral movement
  6. Scope:

    • Single dump
    • Multiple attempts
    • Multi-host pattern

Example Detection Templates

KQL

Sysmon
| where EventID == 10
| where TargetImage has "\\lsass.exe"
| project TimeGenerated, Computer, SourceImage, GrantedAccess
Sysmon
| where EventID == 1
| where CommandLine has_any ("procdump","comsvcs","MiniDump","lsass")
| project TimeGenerated, Computer, User, CommandLine

EQL

process where process.command_line like "*procdump*" or process.command_line like "*MiniDump*"
sequence by host.name with maxspan=5m
  [ process where process.name != null ]
  [ file where file.extension == "dmp" ]

Sigma

title: LSASS Dumping Detection
id: 3d6c9e70-lsass-dump
status: experimental
description: Detects LSASS dumping activity linked to credential theft
references:
  - https://attack.mitre.org/
author: Vergil
date: 2026-03-07
logsource:
  product: windows
  service: sysmon
detection:
  selection:
    EventID: 10
    TargetImage|endswith: '\lsass.exe'
  condition: selection
fields:
  - SourceImage
  - GrantedAccess
falsepositives:
  - Security tooling
level: high
tags:
  - attack.credential_access
  - attack.t1003.001

Splunk

index="main" sourcetype="WinEventLog:*" EventCode=10 TargetImage=*lsass* (GrantedAccess="0x1FFFFF" OR GrantedAccess="0x1010" OR GrantedAccess="0x1410") SourceUser!=*SYSTEM*
| stats count by SourceImage

Mitigation & Hardening

Control AreaMitigationEffectivenessNotes
RunAsPPLProtect LSASSCriticalStrong anti-dump barrier
Sysmon Event 10Enable process access loggingCriticalCore visibility
Credential GuardIsolate secretsCriticalMajor reduction in dump value
Dump file monitoringAlert on .dmp creationHighStrong post-access signal
EDR handle analyticsDetect abnormal LSASS opensCriticalBest real-time coverage