mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-08-03 01:10:18 +03:00
Each rewritten description now states both what the skill does (concrete capability, named tools/artifacts) and an explicit when-to-use trigger, improving agent discovery/activation. Grounded in each skill's own body; changes confined to the `description` field only (bodies and all other frontmatter untouched). Produced by a gated audit->rewrite->recheck loop (548 -> 0 flagged) with a sampled anti-invention check (0 ungrounded). Schema: 817/817 pass. Framework-ID gate: 0 defects.
97 lines
3.3 KiB
Markdown
97 lines
3.3 KiB
Markdown
---
|
|
name: detecting-credential-dumping-techniques
|
|
description: Detect LSASS credential dumping, SAM database extraction, and NTDS.dit theft (e.g. via Mimikatz) using Sysmon Event ID 10 process-access logging, Windows Security logs, and SIEM correlation rules. Use when hunting for credential-theft activity on Windows/Active Directory hosts or triaging EDR alerts on LSASS access.
|
|
domain: cybersecurity
|
|
subdomain: threat-detection
|
|
tags:
|
|
- credential-dumping
|
|
- lsass
|
|
- mimikatz
|
|
- sysmon
|
|
- active-directory
|
|
- windows-security
|
|
- defense-evasion
|
|
version: '1.0'
|
|
author: mahipal
|
|
license: Apache-2.0
|
|
d3fend_techniques:
|
|
- Token Binding
|
|
- Execution Isolation
|
|
- File Metadata Consistency Validation
|
|
- Restore Access
|
|
- Application Protocol Command Analysis
|
|
nist_csf:
|
|
- DE.CM-01
|
|
- DE.AE-02
|
|
- DE.AE-06
|
|
- ID.RA-05
|
|
mitre_attack:
|
|
- T1078
|
|
- T1190
|
|
- T1059
|
|
- T1003
|
|
- T1110
|
|
mitre_f3:
|
|
version: '1.1'
|
|
tactics:
|
|
- reconnaissance
|
|
- positioning
|
|
- initial-access
|
|
techniques:
|
|
- id: T1555
|
|
name: Credentials from Password Stores
|
|
tactic: reconnaissance
|
|
source: attack
|
|
- id: T1555.003
|
|
name: 'Credentials from Password Stores: Credentials from Web Browsers'
|
|
tactic: reconnaissance
|
|
source: attack
|
|
- id: T1539
|
|
name: Steal Web Session Cookie
|
|
tactic: positioning
|
|
source: attack
|
|
- id: F1006.002
|
|
name: 'Account Takeover: Exposed Login Credential'
|
|
tactic: initial-access
|
|
source: f3
|
|
- id: T1110.002
|
|
name: 'Brute Force: Password Cracking'
|
|
tactic: initial-access
|
|
source: attack
|
|
---
|
|
|
|
# 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
|
|
|
|
- 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
|
|
|
|
1. Configure Sysmon to log ProcessAccess events targeting lsass.exe
|
|
2. Forward Sysmon Event ID 10 and Windows Event ID 4688 to SIEM
|
|
3. Create detection rules for known GrantedAccess patterns (0x1010, 0x1FFFFF)
|
|
4. Detect comsvcs.dll MiniDump and procdump.exe targeting LSASS PID
|
|
5. Alert on reg.exe SAM/SECURITY/SYSTEM hive export commands
|
|
6. Detect ntdsutil/vssadmin shadow copy creation for NTDS.dit theft
|
|
7. 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.
|