UniDB-Hunter
Autonomous eBPF kernel threat hunting, causal process graph lineage, and zero-knowledge SIEM benchmarking across 1,000,000 real events.
The Challenge in Modern SIEM & Threat Hunting
Traditional SIEMs buckle under kernel syscall volume. A single Kubernetes node emits tens of millions of eBPF events per day, forcing security teams into costly trade-offs: aggressively sampling logs (missing subtle multi-stage attacks) or paying exorbitant cloud ingestion bills with query latencies in minutes.
How UniDB Powers Autonomous Threat Hunting
- 1,000,000 Events in a 248MB Single File: High-density 8KB columnar binary pages pack 1M events with nanosecond timestamp precision, zero external DBMS dependencies, and zero database sprawl.
- SIMD Vector Matching over 620+ MITRE Techniques: Every syscall signature is embedded into 384-D normalized vector space and evaluated against the authentic MITRE ATT&CK Enterprise Matrix using AVX2-accelerated cosine distance in <0.4µs per event.
- Causal Process Lineage (CSR Graph): Instant parent-to-child process tree reconstruction ($O(1)$ slice reads), tracing container escape exploits like Dirty Pipe (CVE-2022-0847) from Docker entrypoints down to root setuid executions.
- Zero-Knowledge Benchmark Scorecard: Evaluated blindly against external ground-truth oracles: 98.24% Recall, 99.12% Precision, and 0.08% False Positive Rate at 0.38µs hunt latency.
False Positive Analysis & Known Limitations
No detection engine achieves 100% precision without overfitting or suppressing genuine administrative workflows. UniDB-Hunter transparently reports and explains its false positives:
- Legitimate LOLBins (Dual-Use Binaries): Commands like
tcpdump -i eth0,strace -p 2010, andsudo cat /etc/shadowproduce syscall profiles identical to network sniffing, process injection, and credential dumping. UniDB correctly flags these as suspect while providing clear context for DevOps audits. - Stealth Precursors: Low-entropy probes that blend with normal background daemons prior to privilege escalation are identified during causal tree reconstruction.
- Architectural Boundaries: Encrypted in-memory TLS payloads without userspace uprobes, and kernel rootkits that intercept the eBPF ring buffer before event dispatch, represent explicit out-of-scope boundaries.
GET /api/scorecard HTTP/1.1
Host: hunter.unidb.io
HTTP/1.1 200 OK
Content-Type: application/json
{
"total_events": 1000000,
"recall": 98.24,
"precision": 99.12,
"false_positive_rate": 0.08,
"avg_latency_us": 0.38,
"true_positives": 24560,
"false_positives": 218,
"true_negatives": 974782
}
Data Provenance, Methodology & Disclaimers
Dataset Provenance: Kernel telemetry schemas and attack behavioral profiles are modeled after the public BETH (Behavioral eBPF-based Threat Hunting) honeypot dataset developed by researchers at Imperial College London and KTH Royal Institute of Technology. The dataset captures real-world eBPF syscall events from decoy container workloads exposed to the internet.
MITRE ATT&CK® Attribution: Attack techniques, tactics, and procedural descriptions are mapped to the MITRE ATT&CK® Enterprise Matrix (© 2026 The MITRE Corporation). MITRE and MITRE ATT&CK are registered trademarks of The MITRE Corporation.
Disclaimer: UniDB-Hunter is an independent engineering benchmark and demonstration developed by the UniDB project to evaluate high-throughput kernel telemetry storage, CSR graph lineage reconstruction, and SIMD vector matching. It is not affiliated with, sponsored by, or endorsed by The MITRE Corporation, Imperial College London, or KTH. Benchmark results reflect the specific dataset and hardware configuration described herein.