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
59 lines
1.6 KiB
Markdown
59 lines
1.6 KiB
Markdown
# API Reference: Extracting Memory Artifacts with Rekall
|
|
|
|
## Rekall Session
|
|
|
|
```python
|
|
from rekall import session
|
|
|
|
s = session.Session(
|
|
filename="/path/to/memory.raw",
|
|
autodetect=["rsds"],
|
|
profile_path=["https://github.com/google/rekall-profiles/raw/master"]
|
|
)
|
|
```
|
|
|
|
## Key Plugins
|
|
|
|
| Plugin | Purpose | Usage |
|
|
|--------|---------|-------|
|
|
| `pslist` | List active processes via EPROCESS | `s.plugins.pslist()` |
|
|
| `psscan` | Brute-force scan for EPROCESS | `s.plugins.psscan()` |
|
|
| `malfind` | Detect injected code (VAD) | `s.plugins.malfind()` |
|
|
| `netscan` | List network connections | `s.plugins.netscan()` |
|
|
| `dlllist` | List loaded DLLs | `s.plugins.dlllist(pids=[pid])` |
|
|
| `vadinfo` | VAD tree analysis | `s.plugins.vadinfo(pids=[pid])` |
|
|
| `modules` | List kernel modules | `s.plugins.modules()` |
|
|
| `handles` | List open handles | `s.plugins.handles(pids=[pid])` |
|
|
| `filescan` | Scan for FILE_OBJECT | `s.plugins.filescan()` |
|
|
|
|
## Hidden Process Detection
|
|
|
|
```python
|
|
pslist_pids = set(p.pid for p in s.plugins.pslist())
|
|
psscan_pids = set(p.pid for p in s.plugins.psscan())
|
|
hidden = psscan_pids - pslist_pids
|
|
```
|
|
|
|
## Malfind Output Fields
|
|
|
|
- `pid`: Process ID
|
|
- `name`: Process name
|
|
- `address`: VAD start address
|
|
- `protection`: Memory protection (PAGE_EXECUTE_READWRITE = suspicious)
|
|
- `tag`: Pool tag
|
|
|
|
## Command Line
|
|
|
|
```bash
|
|
rekall -f memory.raw pslist
|
|
rekall -f memory.raw malfind
|
|
rekall -f memory.raw netscan
|
|
rekall -f memory.raw dlllist --pid 1234
|
|
```
|
|
|
|
### References
|
|
|
|
- Rekall: https://github.com/google/rekall
|
|
- Rekall docs: https://rekall.readthedocs.io/
|
|
- Rekall profiles: https://github.com/google/rekall-profiles
|