mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
65 lines
2.5 KiB
Markdown
65 lines
2.5 KiB
Markdown
---
|
|
name: detecting-credential-dumping-techniques
|
|
description: Detect LSASS credential dumping, SAM database extraction, and NTDS.dit theft using Sysmon Event ID 10, Windows
|
|
Security logs, and SIEM correlation rules
|
|
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
|
|
---
|
|
|
|
# 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.
|