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

1.4 KiB

YARA Rule Development Standards

Rule Naming Convention

  • Malware_Family_Variant: For specific malware variants
  • APT_Group_Tool: For threat actor associated tools
  • Exploit_CVE_YYYY_NNNN: For exploit payloads
  • Technique_Name: For generic technique detection

Rule Quality Metrics

Metric Target Description
True Positive Rate >99% Detection of known samples
False Positive Rate <0.1% Matches on clean files
Scan Speed >1000 files/s Processing performance
Maintenance Burden Low Frequency of updates needed

String Types Reference

Type Syntax Use Case
ASCII text "text" ascii Plain text strings
Wide text "text" wide UTF-16LE encoded strings
Case-insensitive "text" nocase Variable casing
Hex pattern { AA BB CC } Byte sequences
Wildcard hex { AA ?? CC } Single byte wildcard
Jump hex { AA [2-4] CC } Variable length gap
Regex /pattern/ Complex pattern matching

MITRE ATT&CK Relevance

  • T1027 - Obfuscated Files: Rules detect packed/encoded malware
  • T1036 - Masquerading: Rules identify file mimicry
  • T1059 - Command Interpreter: Rules detect malicious scripts

References