mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 16:40:24 +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
62 lines
3.6 KiB
Markdown
62 lines
3.6 KiB
Markdown
# Workflows: Zerologon Exploitation
|
|
|
|
## Exploitation Workflow
|
|
|
|
```
|
|
┌─────────────────────────────────────────────────────────────────┐
|
|
│ ZEROLOGON EXPLOITATION WORKFLOW │
|
|
├─────────────────────────────────────────────────────────────────┤
|
|
│ │
|
|
│ 1. RECONNAISSANCE │
|
|
│ ├── Identify domain controllers (DNS SRV records) │
|
|
│ ├── Verify network access to DC (TCP 135, RPC) │
|
|
│ └── Check patch status with zerologon_tester.py │
|
|
│ │
|
|
│ 2. EXPLOITATION │
|
|
│ ├── Run CVE-2020-1472 exploit (~256 attempts, ~3 seconds) │
|
|
│ ├── DC machine account password set to empty │
|
|
│ └── Verify exploitation success │
|
|
│ │
|
|
│ 3. CREDENTIAL EXTRACTION │
|
|
│ ├── DCSync with empty hash (secretsdump.py -no-pass) │
|
|
│ ├── Extract Administrator NTLM hash │
|
|
│ ├── Extract krbtgt hash (for Golden Ticket) │
|
|
│ └── Extract all domain user hashes │
|
|
│ │
|
|
│ 4. DOMAIN ACCESS │
|
|
│ ├── Pass-the-Hash as Administrator │
|
|
│ ├── Access any domain system │
|
|
│ └── Create Golden Ticket for persistence │
|
|
│ │
|
|
│ 5. RESTORATION (CRITICAL) │
|
|
│ ├── Restore DC machine account password immediately │
|
|
│ ├── Verify AD replication is functioning │
|
|
│ └── Document exploitation and restoration timestamps │
|
|
│ │
|
|
└─────────────────────────────────────────────────────────────────┘
|
|
```
|
|
|
|
## Impact Assessment
|
|
|
|
```
|
|
Zerologon Impact Chain
|
|
│
|
|
├── DC Machine Account Password Reset to Empty
|
|
│ ├── AD Replication BREAKS (secrets no longer sync)
|
|
│ ├── DNS may stop functioning
|
|
│ ├── Group Policy stops processing
|
|
│ └── Kerberos ticket validation fails
|
|
│
|
|
├── DCSync with Empty Hash
|
|
│ ├── ALL domain password hashes extracted
|
|
│ ├── krbtgt hash = Golden Ticket capability
|
|
│ └── Service account hashes = lateral movement
|
|
│
|
|
└── Full Domain Compromise
|
|
├── Administrator access to all systems
|
|
├── Ability to create/modify any account
|
|
└── Complete control over Active Directory
|
|
```
|
|
|
|
**RED TEAM WARNING**: Always restore the DC machine account password immediately after exploitation. Failing to do so will cause Active Directory to break, potentially causing a production outage.
|