cosmicmicra commited on
Commit
5cc4b50
Β·
verified Β·
1 Parent(s): 0f595d7

Add README

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Agentic SOC: Autonomous Security Operations Center
2
+
3
+ Research & architecture design document for building a fully autonomous Security Operations Center powered by LLM-based reasoning agents.
4
+
5
+ **Start here:** [Full Research Document](./agentic-soc-research.md)
6
+
7
+ ## Key Highlights
8
+
9
+ - **Core Innovation:** Store the *model*, not the *data*. Normal logs update the baseline and are discarded. Only anomaly logs are retained. ~70% cost reduction vs traditional SIEMs.
10
+ - **Architecture:** 7-layer pipeline from CloudTrail ingestion β†’ statistical baselining β†’ multi-agent LLM triage β†’ automated remediation
11
+ - **Three-Way Verdict:** Every alert ends in one of: False Positive (dismiss), True Positive + Auto-Remediate (act), True Positive + Escalate (human)
12
+ - **Grounded in Research:** Based on 15+ papers including CORTEX (arxiv:2510.00311), AACT (arxiv:2505.09843), CloudAnoAgent (arxiv:2508.01844)
13
+
14
+ ## Architecture Overview
15
+
16
+ ```
17
+ CloudTrail Events β†’ Feature Extraction β†’ Baseline Accumulator (no raw storage)
18
+ β”‚
19
+ anomaly detected
20
+ β”‚
21
+ Multi-Agent LLM Triage
22
+ (Orchestrator β†’ Behavior Analysis β†’
23
+ Evidence Gathering β†’ Reasoning)
24
+ β”‚
25
+ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
26
+ FALSE POS AUTO-ACT ESCALATE
27
+ (dismiss) (remediate) (human)
28
+ ```
29
+
30
+ ## Files
31
+
32
+ - `agentic-soc-research.md` β€” Full research document (15 sections, ~1500 lines)
33
+ - Covers: architecture, baseline algorithms, multi-agent pipeline, MITRE ATT&CK mappings, storage economics, implementation roadmap, code examples, and 20+ paper references