Detecting Credential Dumping Techniques
Overview
Credential dumping (MITRE ATT&CK T1003) is a post-exploitation technique where adversaries extract authentication credentials from OS memory, registry hives, or domain controller databases. This skill covers detection of LSASS memory access via Sysmon Event ID 10 (ProcessAccess), SAM registry hive export via reg.exe, NTDS.dit extraction via ntdsutil/vssadmin, and comsvcs.dll MiniDump abuse. Detection rules analyze GrantedAccess bitmasks, suspicious calling processes, and known tool signatures.
When to Use
Trigger phrases:
"detecting credential dumping techniques"
"Detect LSASS credential dumping, SAM database extraction, and NTDS"
When investigating security incidents that require detecting credential dumping techniques
When building detection rules or threat hunting queries for this domain
When SOC analysts need structured procedures for this analysis type
When validating security monitoring coverage for related attack techniques
Prerequisites
- Sysmon v14+ deployed with ProcessAccess logging (Event ID 10) for lsass.exe
- Windows Security audit policy enabling process creation (Event ID 4688) with command line logging
- Splunk or Elastic SIEM ingesting Sysmon and Windows Security logs
- Python 3.8+ for log analysis
Steps
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
- Configure Sysmon to log ProcessAccess events targeting lsass.exe
- Forward Sysmon Event ID 10 and Windows Event ID 4688 to SIEM
- Create detection rules for known GrantedAccess patterns (0x1010, 0x1FFFFF)
- Detect comsvcs.dll MiniDump and procdump.exe targeting LSASS PID
- Alert on reg.exe SAM/SECURITY/SYSTEM hive export commands
- Detect ntdsutil/vssadmin shadow copy creation for NTDS.dit theft
- Correlate detections with user/host context for risk scoring
Expected Output
JSON report containing detected credential dumping indicators with technique classification, severity ratings, process details, MITRE ATT&CK mapping, and Splunk/Elastic detection queries.
When NOT to Use
- You need to perform the attack to test detection (use performing-* skills)
- Task is about analyzing past incidents (use analyzing-* skills)
- You need to implement detection rules (use implementing-* skills)
- Task is about threat hunting proactively (use hunting-* skills)
- You don't have access to logs or monitoring data
- Task requires incident response (use IR skills)
Red Flags
- Performing actions without explicit written authorization from the asset owner
- Testing against production systems without a defined scope and rules of engagement
- Sharing sensitive findings or credentials in unencrypted communications
- Failing to properly scope and contain the assessment before starting
Process
- Reconnaissance — Gather target information, identify attack surface, enumerate services
- Analysis/Exploitation — Execute the technique, analyze results, document findings
- Reporting — Document IOCs, write findings, provide remediation recommendations
Verification
- All steps executed successfully against a test environment before production use
- Output documented with screenshots or logs demonstrating expected behavior
- Results validated against known-good baselines or reference implementations
- Documentation complete enough for another analyst to reproduce findings
Anti-Rationalization Table
| Rationalization |
Reality |
| "We are too small to be targeted" |
Automated attacks target everyone. Size does not matter. |
| "Security slows us down" |
A breach slows you down 100x more. Build security in from the start. |
| "We will fix it after launch" |
Vulnerabilities in production are exploited within hours. Fix before deploy. |
1---2name: detecting-credential-dumping-techniques3description: Use when detect LSASS credential dumping, SAM database extraction, and NTDS.dit theft using Sysmon Event ID 10, Windows Security logs, and SIEM correlation rules. Use when detecting lsass credential dumping, sam database extraction, and ntds.dit theft.4license: Apache-2.05---678# Detecting Credential Dumping Techniques910## Overview1112Credential dumping (MITRE ATT&CK T1003) is a post-exploitation technique where adversaries extract authentication credentials from OS memory, registry hives, or domain controller databases. This skill covers detection of LSASS memory access via Sysmon Event ID 10 (ProcessAccess), SAM registry hive export via reg.exe, NTDS.dit extraction via ntdsutil/vssadmin, and comsvcs.dll MiniDump abuse. Detection rules analyze GrantedAccess bitmasks, suspicious calling processes, and known tool signatures.131415## When to Use16**Trigger phrases:**17- "detecting credential dumping techniques"18- "Detect LSASS credential dumping, SAM database extraction, and NTDS"192021- When investigating security incidents that require detecting credential dumping techniques22- When building detection rules or threat hunting queries for this domain23- When SOC analysts need structured procedures for this analysis type24- When validating security monitoring coverage for related attack techniques2526## Prerequisites2728- Sysmon v14+ deployed with ProcessAccess logging (Event ID 10) for lsass.exe29- Windows Security audit policy enabling process creation (Event ID 4688) with command line logging30- Splunk or Elastic SIEM ingesting Sysmon and Windows Security logs31- Python 3.8+ for log analysis3233## Steps3435```python36# Example: IOC detection37import re3839IOC_PATTERNS = {40 "ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",41 "domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",42 "hash_md5": r"\b[a-f0-9]{32}\b",43 "hash_sha256": r"\b[a-f0-9]{64}\b",44}4546def extract_iocs(text: str) -> dict:47 return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}48```49501. Configure Sysmon to log ProcessAccess events targeting lsass.exe512. Forward Sysmon Event ID 10 and Windows Event ID 4688 to SIEM523. Create detection rules for known GrantedAccess patterns (0x1010, 0x1FFFFF)534. Detect comsvcs.dll MiniDump and procdump.exe targeting LSASS PID545. Alert on reg.exe SAM/SECURITY/SYSTEM hive export commands556. Detect ntdsutil/vssadmin shadow copy creation for NTDS.dit theft567. Correlate detections with user/host context for risk scoring5758## Expected Output5960JSON report containing detected credential dumping indicators with technique classification, severity ratings, process details, MITRE ATT&CK mapping, and Splunk/Elastic detection queries.61## When NOT to Use6263- You need to perform the attack to test detection (use performing-* skills)64- Task is about analyzing past incidents (use analyzing-* skills)65- You need to implement detection rules (use implementing-* skills)66- Task is about threat hunting proactively (use hunting-* skills)67- You don't have access to logs or monitoring data68- Task requires incident response (use IR skills)697071## Red Flags7273- Performing actions without explicit written authorization from the asset owner74- Testing against production systems without a defined scope and rules of engagement75- Sharing sensitive findings or credentials in unencrypted communications76- Failing to properly scope and contain the assessment before starting7778## Process79801. **Reconnaissance** — Gather target information, identify attack surface, enumerate services811. **Analysis/Exploitation** — Execute the technique, analyze results, document findings821. **Reporting** — Document IOCs, write findings, provide remediation recommendations8384## Verification8586- All steps executed successfully against a test environment before production use87- Output documented with screenshots or logs demonstrating expected behavior88- Results validated against known-good baselines or reference implementations89- Documentation complete enough for another analyst to reproduce findings9091## Anti-Rationalization Table9293| Rationalization | Reality |94|---|---|95| "We are too small to be targeted" | Automated attacks target everyone. Size does not matter. |96| "Security slows us down" | A breach slows you down 100x more. Build security in from the start. |97| "We will fix it after launch" | Vulnerabilities in production are exploited within hours. Fix before deploy. |