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
43 lines
1.6 KiB
Markdown
43 lines
1.6 KiB
Markdown
# API Reference — Performing Lateral Movement with WMIExec
|
|
|
|
## Libraries Used
|
|
- **python-evtx**: Parse Windows EVTX logs for WMI process creation artifacts
|
|
- **subprocess**: Execute Impacket wmiexec, tshark PCAP analysis, WMIC queries
|
|
- **xml.etree.ElementTree**: Parse Sysmon/Security event XML
|
|
- **impacket** (external): wmiexec.py for authorized lateral movement testing
|
|
|
|
## CLI Interface
|
|
```
|
|
python agent.py detect --evtx security.evtx
|
|
python agent.py exec --target 10.0.0.5 --domain CORP --user admin [--cmd whoami]
|
|
python agent.py network --pcap capture.pcap
|
|
python agent.py persistence
|
|
```
|
|
|
|
## Core Functions
|
|
|
|
### `detect_wmiexec_artifacts_evtx(evtx_file)` — Detect WMIExec in event logs
|
|
Searches for: Sysmon EID 1 with wmiprvse.exe parent, EID 4624 type 3 logons, EID 7045 service installs.
|
|
|
|
### `run_wmiexec_impacket(target, domain, username, command)` — Execute remote command
|
|
Uses Impacket wmiexec for authorized penetration testing.
|
|
|
|
### `detect_wmi_network_traffic(pcap_file)` — PCAP analysis for WMI
|
|
Uses tshark to filter DCOM UUID 4d9f4ab8-7d1c-11cf-861e-0020af6e7c57 and port 135.
|
|
|
|
### `check_wmi_persistence()` — Local WMI subscription audit
|
|
Queries __EventFilter, CommandLineEventConsumer, __FilterToConsumerBinding.
|
|
|
|
## Detection Indicators
|
|
| Artifact | Event ID | Indicator |
|
|
|----------|----------|-----------|
|
|
| Process from WMI | Sysmon 1 | ParentImage = wmiprvse.exe |
|
|
| Network logon | Security 4624 | LogonType = 3 |
|
|
| Service install | System 7045 | BTOBTO/wmi patterns |
|
|
|
|
## Dependencies
|
|
```
|
|
pip install python-evtx impacket
|
|
```
|
|
System: tshark (optional, for PCAP analysis)
|