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
28 lines
1.2 KiB
Markdown
28 lines
1.2 KiB
Markdown
# Standards and Framework References
|
|
|
|
## MITRE ATT&CK - Privilege Escalation (TA0004)
|
|
| Technique ID | Name | Description |
|
|
|-------------|------|-------------|
|
|
| T1548.001 | Setuid and Setgid | Exploit SUID/SGID binaries |
|
|
| T1548.003 | Sudo and Sudo Caching | Abuse sudo misconfigurations |
|
|
| T1068 | Exploitation for Privilege Escalation | Kernel/service exploits |
|
|
| T1574.006 | Dynamic Linker Hijacking | LD_PRELOAD/LD_LIBRARY_PATH abuse |
|
|
| T1053.003 | Cron | Abuse scheduled tasks |
|
|
| T1543.002 | Systemd Service | Writable service manipulation |
|
|
|
|
## Common Kernel CVEs
|
|
| CVE | Name | Kernel Range | CVSS |
|
|
|-----|------|-------------|------|
|
|
| CVE-2016-5195 | Dirty Cow | < 4.8.3 | 7.8 |
|
|
| CVE-2021-4034 | PwnKit (pkexec) | Polkit < 0.120 | 7.8 |
|
|
| CVE-2022-0847 | Dirty Pipe | 5.8 - 5.16.10 | 7.8 |
|
|
| CVE-2021-3156 | Baron Samedit (sudo) | sudo < 1.9.5p2 | 7.8 |
|
|
| CVE-2023-2640 | GameOver(lay) | Ubuntu kernels | 7.8 |
|
|
| CVE-2023-0386 | OverlayFS | 5.11 - 6.2 | 7.8 |
|
|
|
|
## CIS Benchmark - Linux
|
|
- Ensure permissions on /etc/crontab are configured (600 root:root)
|
|
- Ensure SUID/SGID files are reviewed regularly
|
|
- Ensure sudo is configured to use a pseudo-TTY
|
|
- Ensure no world-writable files exist in system paths
|