Claude 24f816b6a3
Consolidate 22 sibling repos into layered organism structure
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
2026-06-10 06:53:01 +00:00

2.1 KiB

API Reference: Investigating Ransomware Attack Artifacts

VirusTotal API v3

Endpoint Method Description
/api/v3/files/{hash} GET Look up ransomware sample by MD5/SHA-256
/api/v3/files POST Upload ransomware sample for analysis
/api/v3/files/{id}/behaviour_summary GET Retrieve behavioral analysis results

ID Ransomware

Endpoint Method Description
https://id-ransomware.malwarehunterteam.com/ POST Upload ransom note or encrypted sample for variant ID

No More Ransom Project

Resource Description
https://www.nomoreransom.org/crypto-sheriff.php Check if free decryptor is available for identified variant

MalwareBazaar API

Endpoint Method Description
https://mb-api.abuse.ch/api/v1/ POST Query ransomware samples by hash, tag, or signature

Key Libraries

  • requests: HTTP client for VirusTotal and ID Ransomware API calls
  • hashlib (stdlib): Calculate MD5/SHA-256 hashes of ransomware samples and notes
  • re (stdlib): Extract Bitcoin addresses, Tor .onion sites, and emails from notes
  • csv (stdlib): Parse exported Windows Event Log data
  • pathlib (stdlib): Recursive file system traversal for artifact discovery

Ransomware IOC Patterns

Pattern Regex Description
Bitcoin [13][a-km-zA-HJ-NP-Z1-9]{25,34} Legacy Bitcoin addresses
Bitcoin Bech32 bc1[a-z0-9]{39,59} SegWit Bitcoin addresses
Monero 4[0-9AB][1-9A-HJ-NP-Za-km-z]{93} Monero wallet addresses
Tor Sites [a-z2-7]{16,56}\.onion Tor hidden service domains

Configuration

Variable Description
VT_API_KEY VirusTotal API key for hash lookups and sample submission

References