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
66 lines
1.6 KiB
Markdown
66 lines
1.6 KiB
Markdown
# API Reference: Hunting for Shadow Copy Deletion
|
|
|
|
## python-evtx
|
|
|
|
```python
|
|
import Evtx.Evtx as evtx
|
|
|
|
with evtx.Evtx("Security.evtx") as log:
|
|
for record in log.records():
|
|
xml_str = record.xml() # full XML of event
|
|
ts = record.timestamp() # datetime object
|
|
```
|
|
|
|
## Detection Patterns
|
|
|
|
| Pattern | Technique | Severity |
|
|
|---------|-----------|----------|
|
|
| `vssadmin delete shadows` | T1490 | CRITICAL |
|
|
| `wmic shadowcopy delete` | T1490 | CRITICAL |
|
|
| `bcdedit /set recoveryenabled no` | T1490 | HIGH |
|
|
| `wbadmin delete catalog` | T1490 | HIGH |
|
|
| `Win32_ShadowCopy.Delete()` | T1490 | CRITICAL |
|
|
|
|
## Splunk SPL
|
|
|
|
```spl
|
|
index=wineventlog (EventCode=4688 OR EventCode=1)
|
|
| where match(CommandLine, "(?i)(vssadmin.*delete.*shadows|wmic.*shadowcopy.*delete)")
|
|
| table _time Computer User CommandLine ParentImage
|
|
```
|
|
|
|
## KQL (Microsoft Sentinel)
|
|
|
|
```kql
|
|
DeviceProcessEvents
|
|
| where ProcessCommandLine has_any ("vssadmin delete shadows", "wmic shadowcopy delete",
|
|
"bcdedit /set", "wbadmin delete catalog")
|
|
| project Timestamp, DeviceName, AccountName, ProcessCommandLine, InitiatingProcessFileName
|
|
```
|
|
|
|
## Sigma Rule Format
|
|
|
|
```yaml
|
|
title: Shadow Copy Deletion
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
Image|endswith: '\vssadmin.exe'
|
|
CommandLine|contains|all:
|
|
- 'delete'
|
|
- 'shadows'
|
|
condition: selection
|
|
level: critical
|
|
tags:
|
|
- attack.impact
|
|
- attack.t1490
|
|
```
|
|
|
|
### References
|
|
|
|
- MITRE T1490: https://attack.mitre.org/techniques/T1490/
|
|
- python-evtx: https://github.com/williballenthin/python-evtx
|
|
- Sigma Rules: https://github.com/SigmaHQ/sigma
|