Skip to content
AI Security

AI Agent Security

An AI agent that runs commands, reads files, and calls tools is a new kind of user on your machine, one that can be talked into things by a poisoned file or an injected prompt. Prompt filters guard what it says. The risk is what it does.

14 articles in this hub

How InnerWarden approaches this

InnerWarden puts the guardrail at the action layer. It screens every command the agent proposes, normalizes shell rewrites before matching, and on Linux the kernel Execution Gate makes the dangerous ones impossible, scoped to the agent. Monitor first, enforce when you are ready. These posts cover the attacks, the MCP surface, and where enforcement has to live.

Articles in this hub

AI Agent Security

The Shell Rewrites Your Filter: How Command Blocklists Get Beaten

Attackers defeat text command filters by rewriting a command into a form that means the same thing but does not match the string. The fix is two layers: normalize before matching, and read the real argv in-kernel at execve.

8 min read
Read
AI Agent Security

The OWASP Agentic Top 10: What "Covered" Honestly Means

Most tools claim OWASP Agentic Top 10 coverage from the prompt layer. InnerWarden maps to all ten at the action layer with a reason chain, redaction, and a circuit breaker, and is honest about what is proven versus designed.

7 min read
Read
AI Agent Security

From Prompt Injection to Syscall: Why Prompt-Layer Defenses Guard the Wrong Layer

A poisoned input rewrites the agent's intent, and that intent lands on the host as execve, openat, or connect. Prompt-layer defenses live inside the context that just got poisoned. The damage becomes real at the syscall.

7 min read
Read
AI Agent Security

Denied Is Denied: Why the Kernel's No Beats the Model's No

A model's refusal is a prediction an attacker can steer. The operating system's refusal is not a decision at all. Where enforcement has to live when agents touch real machines.

6 min read
Read
AI Agent Security

Claude Code in Auto Mode: Brilliant, Fast, and Running as You

Auto mode is the right way to use a coding agent, and it executes commands with your permissions and no checkpoint. How to keep the speed and put a floor under it.

6 min read
Read
AI Agent Security

The MCP Attack Surface Nobody Sandboxed

Tool poisoning, injected tool output, and command injection through tools: how each MCP attack works, why prompt defenses guard the wrong layer, and how to inspect the path itself.

7 min read
Read
AI Agent Security

How to Protect AI Agents Running on Your Server

AI agents run commands on your server. InnerWarden's check-command API validates commands before execution, scoring risk and blocking dangerous operations.

8 min read
Read
AI Agent Security

Building Secure AI Agents: A Practical Guide

Step-by-step tutorial: integrate InnerWarden with any AI agent in 10 minutes. check-command API, security-context, Python and TypeScript code examples.

10 min read
Read
Thesis

Runtime Guardrails, Not Prompt Guardrails

Agentic Runtime Security is consolidating in 2026 around prompt-side defences. The load-bearing layer is the one downstream: what the agent does, not what it says.

9 min read
Read
AI Agent Security

Your AI Agent Has a Bodyguard Now

How InnerWarden protects AI agents in production with 71 threat rules, real-time notifications, and three defense layers. What happens when an agent tries rm -rf /.

6 min read
Read
AI Agent Security

What Happens When an AI Agent Gets Hacked

Step-by-step walkthrough of a real attack: prompt injection, tool poisoning, credential theft. How agent-guard detects each step and the honeypot captures everything.

8 min read
Read
AI Safety

How to Use AI for Server Security Without Giving It Root Access

InnerWarden's AI isolation model: the model reads data and returns JSON recommendations, Rust validates and executes. The model never sees a shell.

8 min read
Read
For AI Teams

InnerWarden for AI Startups: Protecting Inference Servers

GPU servers exposed to public APIs. Model-weight exfil, scraper bots, prompt-injection, supply-chain. eBPF + agent-guard MCP inspection + autonomous response.

8 min read
Read
Integration

OpenClaw + InnerWarden: Your AI Agent Gets a Security Armor

How InnerWarden protects OpenClaw agents from executing dangerous commands, and how OpenClaw keeps InnerWarden healthy in return.

7 min read
Read