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
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
# Ransomware Encryption Standards Reference
|
|
|
|
## Common Encryption Schemes by Family
|
|
| Family | Symmetric | Asymmetric | Key Size |
|
|
|--------|-----------|-----------|----------|
|
|
| Rhysida | AES-256-CTR | RSA-4096 | 256-bit |
|
|
| Qilin.B | AES-256-CTR/ChaCha20 | RSA-4096 OAEP | 256-bit |
|
|
| Medusa | AES-256 | RSA public key | 256-bit |
|
|
| LockBit 3.0 | AES-256-CTR | Curve25519 | 256-bit |
|
|
| BlackCat/ALPHV | AES-128/ChaCha20 | RSA-2048 | 128/256-bit |
|
|
| Conti | ChaCha20 | RSA-4096 | 256-bit |
|
|
|
|
## Windows Cryptographic API Cheat Sheet
|
|
| Function | Purpose |
|
|
|----------|---------|
|
|
| CryptAcquireContext | Acquire crypto provider handle |
|
|
| CryptGenKey | Generate symmetric/asymmetric key |
|
|
| CryptImportKey | Import key blob |
|
|
| BCryptOpenAlgorithmProvider | Open CNG algorithm |
|
|
| BCryptGenerateSymmetricKey | Create symmetric key |
|
|
|
|
## MITRE ATT&CK Techniques
|
|
- T1486: Data Encrypted for Impact
|
|
- T1490: Inhibit System Recovery
|
|
- T1083: File and Directory Discovery
|
|
- T1082: System Information Discovery
|
|
|
|
## References
|
|
- [No More Ransom Decryptors](https://www.nomoreransom.org/en/decryption-tools.html)
|
|
- [ID Ransomware](https://id-ransomware.malwarehunterteam.com/)
|