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
64 lines
1.7 KiB
Markdown
64 lines
1.7 KiB
Markdown
# Workflows - Threat Intelligence Enrichment in Splunk
|
|
|
|
## TI Feed Integration Workflow
|
|
|
|
```
|
|
1. Identify Relevant TI Sources
|
|
- Commercial feeds (Recorded Future, Mandiant)
|
|
- Open source (OTX, AbuseIPDB, VirusTotal)
|
|
- Industry ISACs
|
|
- Internal threat lists
|
|
|
|
|
v
|
|
2. Configure Modular Inputs
|
|
- Set polling intervals
|
|
- Configure authentication
|
|
- Map feed fields to Splunk schema
|
|
|
|
|
v
|
|
3. Normalize to KV Store
|
|
- Parse raw feed data
|
|
- Map to standard field names
|
|
- Set confidence scores
|
|
- Add source attribution
|
|
|
|
|
v
|
|
4. Create Lookup Definitions
|
|
- Define transforms.conf entries
|
|
- Set field mappings
|
|
- Enable automatic lookups where appropriate
|
|
|
|
|
v
|
|
5. Build Correlation Searches
|
|
- Match events against IOC lookups
|
|
- Add asset/identity enrichment
|
|
- Set severity based on confidence
|
|
|
|
|
v
|
|
6. Monitor and Maintain
|
|
- Track feed freshness
|
|
- Remove stale indicators
|
|
- Measure hit rates per source
|
|
```
|
|
|
|
## IOC Lifecycle Management
|
|
|
|
```
|
|
Ingestion --> Validation --> Active Use --> Aging --> Expiration --> Removal
|
|
| | | | |
|
|
v v v v v
|
|
Raw feeds Dedup and Correlation Reduce Archive
|
|
parsed confidence matching confidence or delete
|
|
scoring weighting
|
|
```
|
|
|
|
## Feed Quality Assessment
|
|
|
|
| Metric | Good | Warning | Critical |
|
|
|---|---|---|---|
|
|
| Feed latency | < 1 hour | 1-24 hours | > 24 hours |
|
|
| False positive rate | < 5% | 5-15% | > 15% |
|
|
| Hit rate | > 1% | 0.1-1% | < 0.1% |
|
|
| Coverage overlap | < 30% | 30-60% | > 60% |
|
|
| Indicator freshness | < 7 days | 7-30 days | > 30 days |
|