MITRE ATT&CK T1003.001: LSASS Memory
When to use this skill
Use this skill when the task involves T1003.001, LSASS Memory, enterprise ATT&CK, TTP mapping, detection engineering, hunting, incident-response enrichment, control validation, or authorized adversary-emulation planning. Treat it as a defensive analysis aid: keep outputs focused on understanding, detecting, mitigating, and safely validating this ATT&CK sub-technique.
Technique context
- ATT&CK domain: enterprise
- ATT&CK ID: T1003.001
- Technique name: LSASS Memory
- Type: sub-technique
- ATT&CK URL: https://attack.mitre.org/techniques/T1003/001
- Tactics: credential-access
- Platforms: Windows
- Required permissions: Not specified
- Effective permissions: Not specified
- Defenses bypassed: Not specified
ATT&CK description
Adversaries may attempt to access credential material stored in the process memory of the Local Security Authority Subsystem Service (LSASS). After a user logs on, the system generates and stores a variety of credential materials in LSASS process memory. These credential materials can be harvested by an administrative user or SYSTEM and used to conduct Lateral Movement using Use Alternate Authentication Material.
As well as in-memory techniques, the LSASS process memory can be dumped from the target host and analyzed on a local system.
For example, on the target host use procdump:
- procdump -ma lsass.exe lsass_dump
Locally, mimikatz can be run using:
- sekurlsa::Minidump lsassdump.dmp
- sekurlsa::logonPasswords
Built-in Windows tools such as comsvcs.dll can also be used:
- rundll32.exe C:\Windows\System32\comsvcs.dll MiniDump PID lsass.dmp full(Citation: Volexity Exchange Marauder March 2021)(Citation: Symantec Attacks Against Government Sector)
Similar to Image File Execution Options Injection, the silent process exit mechanism can be abused to create a memory dump of lsass.exe through Windows Error Reporting (WerFault.exe).(Citation: Deep Instinct LSASS)
Windows Security Support Provider (SSP) DLLs are loaded into LSASS process at system start. Once loaded into the LSA, SSP DLLs have access to encrypted and plaintext passwords that are stored in Windows, such as any logged-on user's Domain password or smart card PINs. The SSP configuration is stored in two Registry keys: HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Security Packages and HKLM\SYSTEM\CurrentControlSet\Control\Lsa\OSConfig\Security Packages. An adversary may modify these Registry keys to add new SSPs, which will be loaded the next time the system boots, or when the AddSecurityPackage Windows API function is called.(Citation: Graeber 2014)
The following SSPs can be used to access credentials:
- Msv: Interactive logons, batch logons, and service logons are done through the MSV authentication package.
- Wdigest: The Digest Authentication protocol is designed for use with Hypertext Transfer Protocol (HTTP) and Simple Authentication Security Layer (SASL) exchanges.(Citation: TechNet Blogs Credential Protection)
- Kerberos: Preferred for mutual client-server domain authentication in Windows 2000 and later.
- CredSSP: Provides SSO and Network Level Authentication for Remote Desktop Services.(Citation: TechNet Blogs Credential Protection)
Agent workflow
- Clarify scope: identify the system, asset class, log sources, cloud or endpoint platform, and whether the user wants triage, detection, coverage assessment, or safe emulation planning.
- Load bundled resources as needed: use
references/technique-profile.json for structured metadata, references/detection-and-mitigation.md for triage and telemetry guidance, references/known-threat-context.md for ATT&CK relationship context, and templates/ for repeatable outputs.
- Map observations to ATT&CK: compare the user's evidence to the ATT&CK description, tactics, platforms, and known procedure patterns before asserting a match.
- Produce defensive outputs: prioritize hypotheses, telemetry requirements, detection logic ideas, validation steps, containment guidance, and mitigations.
- Preserve uncertainty: distinguish confirmed evidence, plausible indicators, assumptions, and gaps. Recommend what to collect next.
- Stay safe: do not provide malware, credential theft, persistence, evasion, destructive automation, or unauthorized exploitation instructions. For adversary emulation, keep steps bounded to approved lab or control-validation contexts and omit operational abuse details.
Bundled resources
references/technique-profile.json: machine-readable ATT&CK metadata for this technique.
references/detection-and-mitigation.md: detection notes, telemetry checklist, triage questions, mitigation candidates, and false-positive considerations.
references/known-threat-context.md: ATT&CK relationship context with attribution cautions.
templates/detection-brief.md: detection engineering brief template.
templates/hunt-plan.md: threat hunt plan template.
templates/incident-response-note.md: incident response note template.
templates/coverage-assessment.md: ATT&CK coverage assessment template.
scripts/render_brief.py: local helper that renders a Markdown defensive brief from technique-profile.json.
assets/output-schema.json: JSON schema for structured technique analysis outputs.
To generate a quick brief, run python scripts/render_brief.py --output brief.md from inside this skill directory, or adapt the templates directly.
Detection guidance
No ATT&CK detection guidance was present in the source STIX object.
Useful telemetry and data sources
- Not specified in the STIX object.
Mitigations to consider
- Behavior Prevention on Endpoint
- Credential Access Protection
- Operating System Configuration
- Password Policies
- Privileged Account Management
- Privileged Process Integrity
- User Training
Known threat context
Use these examples only as contextual leads, not as proof that an observed event is this technique:
- 2016 Ukraine Electric Power Attack (campaign)
- 2025 Poland Wiper Attacks (campaign)
- APT1 (intrusion-set)
- APT28 (intrusion-set)
- APT3 (intrusion-set)
- APT32 (intrusion-set)
- APT33 (intrusion-set)
- APT39 (intrusion-set)
- APT41 (intrusion-set)
- APT5 (intrusion-set)
- Agrius (intrusion-set)
- Aquatic Panda (intrusion-set)
- BRONZE BUTLER (intrusion-set)
- Bad Rabbit (malware)
- Blue Mockingbird (intrusion-set)
- C0032 (campaign)
- Cleaver (intrusion-set)
- Cobalt Strike (malware)
- CozyCar (malware)
- Cutting Edge (campaign)
Recommended output pattern
When responding with this skill, structure the answer as:
- Assessment: whether the evidence supports this ATT&CK mapping and why.
- Evidence: specific indicators, logs, behaviors, and assumptions.
- Detection: telemetry sources, analytic logic, and tuning considerations.
- Response: containment, eradication, recovery, and validation actions.
- Coverage gaps: missing logs, sensors, controls, or environmental details.
- References: include the ATT&CK URL and any user-provided evidence references.
ATT&CK contributors
- Edward Millington
- Ed Williams, Trustwave, SpiderLabs
- Olaf Hartong, Falcon Force
- Michael Forret, Quorum Cyber
1---2name: attack-ent-t1003-001-lsass-memory3description: Analyze MITRE ATT&CK T1003.001 LSASS Memory in the enterprise matrix. Use for TTP triage, detection engineering, hunting, defensive emulation planning, mitigations, incident response mapping, ATT&CK coverage, or questions mentioning T1003.001, LSASS Memory, or enterprise ATT&CK. Adversaries may attempt to access credential material stored in the process memory of the Local Security Authority Subsystem Service (LSASS).4license: MITRE ATT&CK Terms of Use apply to ATT&CK-derived content. See h5---67# MITRE ATT&CK T1003.001: LSASS Memory89## When to use this skill1011Use this skill when the task involves T1003.001, LSASS Memory, enterprise ATT&CK, TTP mapping, detection engineering, hunting, incident-response enrichment, control validation, or authorized adversary-emulation planning. Treat it as a defensive analysis aid: keep outputs focused on understanding, detecting, mitigating, and safely validating this ATT&CK sub-technique.1213## Technique context1415- ATT&CK domain: enterprise16- ATT&CK ID: T1003.00117- Technique name: LSASS Memory18- Type: sub-technique19- ATT&CK URL: https://attack.mitre.org/techniques/T1003/00120- Tactics: credential-access21- Platforms: Windows22- Required permissions: Not specified23- Effective permissions: Not specified24- Defenses bypassed: Not specified2526## ATT&CK description2728Adversaries may attempt to access credential material stored in the process memory of the Local Security Authority Subsystem Service (LSASS). After a user logs on, the system generates and stores a variety of credential materials in LSASS process memory. These credential materials can be harvested by an administrative user or SYSTEM and used to conduct [Lateral Movement](https://attack.mitre.org/tactics/TA0008) using [Use Alternate Authentication Material](https://attack.mitre.org/techniques/T1550).2930As well as in-memory techniques, the LSASS process memory can be dumped from the target host and analyzed on a local system.3132For example, on the target host use procdump:3334* <code>procdump -ma lsass.exe lsass_dump</code>3536Locally, mimikatz can be run using:3738* <code>sekurlsa::Minidump lsassdump.dmp</code>39* <code>sekurlsa::logonPasswords</code>4041Built-in Windows tools such as `comsvcs.dll` can also be used:4243* <code>rundll32.exe C:\Windows\System32\comsvcs.dll MiniDump PID lsass.dmp full</code>(Citation: Volexity Exchange Marauder March 2021)(Citation: Symantec Attacks Against Government Sector)4445Similar to [Image File Execution Options Injection](https://attack.mitre.org/techniques/T1546/012), the silent process exit mechanism can be abused to create a memory dump of `lsass.exe` through Windows Error Reporting (`WerFault.exe`).(Citation: Deep Instinct LSASS)4647Windows Security Support Provider (SSP) DLLs are loaded into LSASS process at system start. Once loaded into the LSA, SSP DLLs have access to encrypted and plaintext passwords that are stored in Windows, such as any logged-on user's Domain password or smart card PINs. The SSP configuration is stored in two Registry keys: <code>HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Security Packages</code> and <code>HKLM\SYSTEM\CurrentControlSet\Control\Lsa\OSConfig\Security Packages</code>. An adversary may modify these Registry keys to add new SSPs, which will be loaded the next time the system boots, or when the AddSecurityPackage Windows API function is called.(Citation: Graeber 2014)4849The following SSPs can be used to access credentials:5051* Msv: Interactive logons, batch logons, and service logons are done through the MSV authentication package.52* Wdigest: The Digest Authentication protocol is designed for use with Hypertext Transfer Protocol (HTTP) and Simple Authentication Security Layer (SASL) exchanges.(Citation: TechNet Blogs Credential Protection)53* Kerberos: Preferred for mutual client-server domain authentication in Windows 2000 and later.54* CredSSP: Provides SSO and Network Level Authentication for Remote Desktop Services.(Citation: TechNet Blogs Credential Protection)5556## Agent workflow57581. Clarify scope: identify the system, asset class, log sources, cloud or endpoint platform, and whether the user wants triage, detection, coverage assessment, or safe emulation planning.592. Load bundled resources as needed: use `references/technique-profile.json` for structured metadata, `references/detection-and-mitigation.md` for triage and telemetry guidance, `references/known-threat-context.md` for ATT&CK relationship context, and `templates/` for repeatable outputs.603. Map observations to ATT&CK: compare the user's evidence to the ATT&CK description, tactics, platforms, and known procedure patterns before asserting a match.614. Produce defensive outputs: prioritize hypotheses, telemetry requirements, detection logic ideas, validation steps, containment guidance, and mitigations.625. Preserve uncertainty: distinguish confirmed evidence, plausible indicators, assumptions, and gaps. Recommend what to collect next.636. Stay safe: do not provide malware, credential theft, persistence, evasion, destructive automation, or unauthorized exploitation instructions. For adversary emulation, keep steps bounded to approved lab or control-validation contexts and omit operational abuse details.6465## Bundled resources6667- `references/technique-profile.json`: machine-readable ATT&CK metadata for this technique.68- `references/detection-and-mitigation.md`: detection notes, telemetry checklist, triage questions, mitigation candidates, and false-positive considerations.69- `references/known-threat-context.md`: ATT&CK relationship context with attribution cautions.70- `templates/detection-brief.md`: detection engineering brief template.71- `templates/hunt-plan.md`: threat hunt plan template.72- `templates/incident-response-note.md`: incident response note template.73- `templates/coverage-assessment.md`: ATT&CK coverage assessment template.74- `scripts/render_brief.py`: local helper that renders a Markdown defensive brief from `technique-profile.json`.75- `assets/output-schema.json`: JSON schema for structured technique analysis outputs.7677To generate a quick brief, run `python scripts/render_brief.py --output brief.md` from inside this skill directory, or adapt the templates directly.7879## Detection guidance8081No ATT&CK detection guidance was present in the source STIX object.8283## Useful telemetry and data sources8485- Not specified in the STIX object.8687## Mitigations to consider8889- Behavior Prevention on Endpoint90- Credential Access Protection91- Operating System Configuration92- Password Policies93- Privileged Account Management94- Privileged Process Integrity95- User Training9697## Known threat context9899Use these examples only as contextual leads, not as proof that an observed event is this technique:100101- 2016 Ukraine Electric Power Attack (campaign)102- 2025 Poland Wiper Attacks (campaign)103- APT1 (intrusion-set)104- APT28 (intrusion-set)105- APT3 (intrusion-set)106- APT32 (intrusion-set)107- APT33 (intrusion-set)108- APT39 (intrusion-set)109- APT41 (intrusion-set)110- APT5 (intrusion-set)111- Agrius (intrusion-set)112- Aquatic Panda (intrusion-set)113- BRONZE BUTLER (intrusion-set)114- Bad Rabbit (malware)115- Blue Mockingbird (intrusion-set)116- C0032 (campaign)117- Cleaver (intrusion-set)118- Cobalt Strike (malware)119- CozyCar (malware)120- Cutting Edge (campaign)121122## Recommended output pattern123124When responding with this skill, structure the answer as:125126- Assessment: whether the evidence supports this ATT&CK mapping and why.127- Evidence: specific indicators, logs, behaviors, and assumptions.128- Detection: telemetry sources, analytic logic, and tuning considerations.129- Response: containment, eradication, recovery, and validation actions.130- Coverage gaps: missing logs, sensors, controls, or environmental details.131- References: include the ATT&CK URL and any user-provided evidence references.132133## ATT&CK contributors134135- Edward Millington136- Ed Williams, Trustwave, SpiderLabs137- Olaf Hartong, Falcon Force138- Michael Forret, Quorum Cyber