惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
T
The Blog of Author Tim Ferriss
量子位
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
小众软件
小众软件
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
美团技术团队
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
博客园 - 【当耐特】
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security

Sysdig Blog

Masterclass: AI is more than ChatGPT and LLMs CVE-2026-39987 update: How attackers weaponized marimo to deploy a blockchain botnet via HuggingFace 5 steps to securing AI workloads Marimo OSS Python Notebook RCE: From Disclosure to Exploitation in Under 10 Hours Security briefing: March 2026 The Sysdig MCP server is now available in AWS Marketplace Risk isn’t reduced until you take action: How teams resolve issues in the cloud AI infrastructure security: Why it deserves its own category Three pillars for building effective runtime-powered cloud defense, the right way Closing the cloud security gap with runtime security Seeing risk isn’t stopping it: Why visibility alone isn’t enough TeamPCP expands: Supply chain compromise spreads from Trivy to Checkmarx GitHub Actions AI coding agents are running on your machines — Do you know what they're doing? Runtime security for AI coding agents: Protecting AI-assisted development How runtime insights power every cloud security use case CVE-2026-33017: How attackers compromised Langflow AI pipelines in 20 hours Inline Cloud Response: Accelerating AWS threat containment for SOC teams Runtime malware detection for AWS Fargate Detecting CVE-2026-3288 & CVE-2026-24512: Ingress-nginx configuration injection vulnerabilities for Kubernetes Malware detection with Sysdig Security briefing: February 2026 Leveling up Kubernetes Posture: From baselines to risk-aware admission Eliminating runtime blind spots: How CleanStart and Sysdig build continuous trust across the container lifecycle LLMjacking: From Emerging Threat to Black Market Reality Real risks live at runtime: Why CISOs must care about deep telemetry in 2026 Sysdig named a Leader in the Forrester Wave™: Cloud Native Application Protection Solutions, Q1 2026 How to run rootless containers AI-assisted cloud intrusion achieves admin access in 8 minutes Security briefing: January 2026 Securing GPU-accelerated AI workloads in Oracle Kubernetes Engine
Introducing Prempti: Runtime security for AI coding agent...
Jonas Rosland · 2026-05-12 · via Sysdig Blog

AI coding agents like Claude Code and Codex have become a natural part of the developer workflow. You give them a task and they read your files, run commands, make network requests, and write code, all on your behalf and all with your permissions.

That shift is powerful, but it also introduces a new layer of risk and a visibility gap.

Today, we’re introducing Prempti, a new open source project that brings Falco's real-time detection engine and runtime security directly into the AI agent tool-call lifecycle. It gives developers a programmable policy boundary at the moment the agent decides to act.

Why this matters

When an agent operates in your terminal, it acts within your user session, which means it can touch your credentials, your SSH keys, and your cloud config files. Researchers and developers have documented cases where AI coding agents, whether through prompt injection, unexpected instructions embedded in parsed files, or simply overly broad tool use, have read files well outside the project scope, exfiltrated environment variables, or attempted to make network calls to external hosts. Most developers have no structured visibility into any of that activity beyond the agent's chat output. There's no policy layer, no audit trail, and no straightforward way to mark certain things as off limits.

Prempti changes that.

What it does

Prempti’s focus is on that visibility gap. It intercepts agent tool calls before they execute and evaluates them against Falco rules, returning one of three verdicts: Allow to let the action proceed, Deny to block it with an explanation sent back to the agent, or Ask to prompt you for interactive approval. That means credential files stay protected, out-of-scope reads get caught before they happen, and you have a full audit trail of everything your agent touched during a session.

Here's an example of what that looks like in practice. If you ask your agent to store a file under ~/.ssh/, Prempti will block the write before it ever happens and send a structured message back to the agent explaining why:

● Write(~/.ssh/random_number.txt)
  ⎿  Deny writing to sensitive paths: Falco blocked writing to
     /home/jonasrosland/.ssh/random_number.txt because it is a sensitive path

How it works

Prempti runs as a lightweight user-space service with no root, kernel modules, or containers required. The default ruleset covers many common risk areas out of the box, including working-directory boundaries, sensitive path protection, credential access, destructive commands, pipe-to-shell attacks, exfiltration attempts, MCP server config poisoning, and persistence vectors like hook injection and git hooks.

By default, Prempti runs in guardrails mode, where rules produce verdicts that actively shape what the agent does. When a tool call is blocked or flagged, the agent receives an LLM-friendly explanation and adapts. If you're not ready to enforce on day one, monitor mode lets you observe everything your agent touches without blocking anything; a sensible place to start for organizations that take a conservative approach to new tooling.

When you need something more tailored, rules are plain YAML using the same syntax Falco users already know. You can block git push, restrict reads to just your project tree, or flag any attempt to pipe content to a shell interpreter, which is often used as a common prompt injection vector. A Claude Code skill is also included to help you draft and validate custom rules interactively, directly from your agent.

A new kind of visibility for AI-driven development

AI coding agents are increasingly trusted with real work on real machines, and the need for visibility at the agent layer is becoming hard to ignore. The threat models are still being defined and the right default policies are still being worked out, but Prempti offers an early, practical step in that direction. It's open source, built on Falco's proven rule engine, and designed to grow with input from the developers and security engineers actually running these agents day to day.

Read the full technical deep-dive on the Falco blog: Introducing Prempti: Falco meets AI coding agents

Explore the project, try it out, and contribute: Prempti on GitHub

Come chat with us about Prempti on the Sysdig Open source Community!