Vervet reads your Zeek and Suricata logs and tells you which hosts are compromised and why.
Point Vervet at a directory of Zeek and Suricata logs and it surfaces the threats hiding in them: C2 beacons phoning home on a fixed interval, DNS tunneling and DGA domains, data exfiltration, lateral movement, and long-lived connections that shouldn't exist. Every flagged host gets a transparent risk score with the evidence chain that produced it and the MITRE ATT&CK techniques it maps to, so an analyst sees not just what fired but why. It runs as a single container on your own hardware. No cloud, no telemetry, no live tap required, and it never touches your network, it only reads logs you already collect.
Vervet is for blue teams, SOC analysts, and MSSPs who run Zeek or Suricata and want the analyst layer that hunts the logs for them, the way RITA and AC-Hunter do for beaconing, but UI-first, MITRE-mapped, and speaking both sensors.
▶ Try the live demo: demo.vervet.dev
No install. Real (sanitized) traffic with a C2 beacon and DNS tunnel already detected.
Demo data: real Zeek logs (sanitized) with a synthetic C2 beacon and DNS-tunnel scenario layered in. Every address is an RFC 5737 / RFC 2544 documentation range.
Vervet is a self-hosted network threat hunting platform for Zeek and Suricata logs. It parses existing log files into a common event model, runs deterministic detection engines for beaconing, DNS abuse, DGA domains, fast-flux, lateral movement, long connections, and Suricata alerts, then rolls findings into per-host risk scores with evidence chains and MITRE ATT&CK mappings.
It serves a FastAPI backend and React UI from one container, supports demo data for evaluation, accepts batch directory ingestion, and exposes REST endpoints for cases, reports, rules, exports, live ingest, and integrations with TheHive, Wazuh, and MISP.
Demo mode loads a realistic sample environment so the dashboard shows scored, explained threats immediately:
git clone https://github.com/lidless-labs/vervet.git
cd vervet
docker compose up -d --build
curl http://localhost:8000/healthExpected output:
{"status":"healthy"}The container serves the API and the web UI on the same port and seeds the demo data on startup. Stop it with docker compose down.
# Point it at your Zeek/Suricata log directory instead of the demo data
docker compose run --rm -e VERVET_DEMO_MODE=false \
-v /var/log/zeek:/logs:ro vervetThen upload or ingest logs from the UI, or via the REST API:
# Zeek conn/dns/http/ssl logs and Suricata eve.json are all accepted
curl -X POST http://localhost:8000/api/v1/ingest/directory \
-H "X-API-Key: $VERVET_API_KEY" \
-H "Content-Type: application/json" \
-d '{"path": "/logs"}'# Backend (FastAPI) on :8000
pip install -r requirements.txt
VERVET_DEMO_MODE=true uvicorn api.main:app --host 0.0.0.0 --port 8000
# Frontend (Vite dev server) on :5174, in another terminal
npm install && npm run devmake dev starts both at once. See the Makefile for individual targets.
| Detection | What it finds | Maps to |
|---|---|---|
| Beaconing / C2 | Periodic callbacks by interval regularity, jitter, and data-size consistency | T1071, T1571 |
| DNS tunneling | High-entropy subdomains and oversized TXT/NULL records used as a covert channel | T1071.004, T1048 |
| DGA domains | Algorithmically generated domains via n-gram and lexical analysis | T1568.002 |
| Fast-flux | Domains rotating through many IPs to hide infrastructure | T1568 |
| Lateral movement | Internal-to-internal connection patterns that suggest pivoting | T1021 |
| Long connections | Unusually persistent flows by duration, protocol, and direction | T1071, T1572 |
| Suricata alerts | Severity-weighted IDS alerts folded into the same per-host score | varies |
Each detection contributes to a unified per-host risk score (0-100) with a full reasoning chain. Scoring is deterministic and explainable, not a black box: you can read exactly which signals raised a host's score and by how much.
Zeek logs (conn/dns/http/ssl/x509/notice) Suricata eve.json
\ /
+--> unified parsers -------------+
|
detection engines (beacon, DNS threat,
lateral movement, long-conn, Suricata)
|
unified threat engine -> per-host score
+ MITRE ATT&CK mapping + evidence chain
|
web UI + REST API <---+---> case management / IOC export
(TheHive / Wazuh / MISP)
Logs are parsed into a common connection/event model, run through each detection engine, and aggregated by the unified threat engine into per-host scores with MITRE mappings and evidence chains. Findings can be promoted to cases, exported as IOCs, and pushed to TheHive, correlated against Wazuh, or enriched from MISP.
Note on persistence (current limitation): the OSS edition keeps its analysis index in memory. It is built for log-batch hunting and triage sessions, not yet as a long-running system of record. Restarting clears loaded logs and analysis (cases, hunt notes, and trends are file-backed). A durable store is the top roadmap item, see below.
Initial endpoints exist for exporting cases to TheHive, correlating IOCs against Wazuh alerts, and enriching IOCs from MISP. Configure via environment variables (THEHIVE_URL/THEHIVE_API_KEY, WAZUH_URL/WAZUH_API_KEY, MISP_URL/MISP_API_KEY) and drive from /api/v1/integrations/*.
- Read-only on the wire. Vervet ingests logs you already collect. There is no code path that talks to a network device or captures live traffic.
- API-key auth. Set
VERVET_API_KEYto require a key on every request. Without it, the server runs in open dev mode and says so loudly at startup. - Ingestion sandbox. Set
VERVET_LOG_ROOTto restrict directory ingestion to a single tree, so the API can't be coaxed into reading arbitrary paths. - Upload rate limiting. PCAP/upload endpoints are rate-limited by default (
VERVET_RATE_LIMIT_*) to protect public deployments. - Local data, no telemetry. Everything stays in your data directory. No external calls except the integrations you configure.
- Durable persistence (SQLite-backed index, audit trail) so investigations survive restarts, the prerequisite for team use.
- Live log tailing for near-real-time dashboards instead of batch ingest.
- Multi-sensor support and alert suppression / noise controls.
- MCP server so agents can query hunts directly.
Apache-2.0. See LICENSE.
Part of Lidless Labs · the eye does not close
Threat Intelligence & OSINT: cyberbrief · intel-workbench · maltego-mcp


