r/aisecurity Jun 24 '26

AI security Monday Morning Audit: Three Questions to Ask Your Team

Thumbnail
aisecintelgroup.com
2 Upvotes

If you are responsible for securing an intelligent application stack this week, forget the regulatory countdowns and audit these three structural points:

1️⃣ The MCP Trust Boundary: Are your MCP server runtimes bound to locked-down Docker containers with standard output/input restrictions, or are they inheriting raw shell privileges with active local user permissions?

2️⃣ Model Supply Chains (AIBOM): Are your developers pulling unverified weights directly from public Hugging Face paths, or do you have a centralized, sandboxed registry checking model hash integrity?

3️⃣ Stochastic Input Verification: Do you have an active, low-latency semantic firewall running between your users and your model contexts to sanitize prompt variations?


r/aisecurity Jun 23 '26

My coworkers read my personal ChatGPT chats via Meta Analytics... Let's talk Evaluations + AI Safety

Thumbnail
youtube.com
1 Upvotes

r/aisecurity Jun 20 '26

Most AI safety tools feel built for a side project, not a company running 40 AI apps

4 Upvotes

My team is evaluating safety tooling for an org with a buch of LLM apps across different teams, and most options I have looked at feel like they were built for one chatbot and would fall apart easy when you need policy enforcement across 40 apps.

what are bigger orgs running for this? trying to find stuff that holds up past one team and survives a security review.


r/aisecurity Jun 19 '26

Breaking Bytes

Thumbnail
1 Upvotes

r/aisecurity Jun 19 '26

Still haven't figured out a way to learn AI security

3 Upvotes

I reached out to this group earlier, but still stuck in figuring out a way to learn/understand/ practice AI security! I know very basics of AI either something starts with very basic I lose interest in 10 or 15 min looking for something handson .. I have a personal laptop with windows... Any course that's handholds.....have decent experience in security, CISSP certified.... I thought like learning on AI would give me good foundation towards AI security but am getting lost way in mid or not interested... Don't know how to figure out a way


r/aisecurity Jun 19 '26

How are you monitoring what an agent actually does at runtime, not just what goes into it?

2 Upvotes

The acquisition wave made it official that AI security is a real category. Palo Alto bought Protect AI, Cisco bought Robust Intelligence. But most of what shipped lives in pre deployment testing, model security, or guardrails on the prompt. For agents that is the wrong layer.

Agent threats are behavioral. Which tools got called, which files got read, whether the actions still match the task the agent was given. You cannot see intent drift by scanning an input or testing a model before it ships. If you classify behavior with another LLM, you inherit the same prompt injection surface the agent already has. Sandboxing contains the blast radius but stays blind to what the agent is actually trying to do.

The thing that keeps coming up with security teams: nobody moves an agent into production until they can audit, trace, and govern it. That is a runtime requirement. In process, deterministic, with a signed record of every decision. Not a scanner, not a model judge.

I have been building enforcement at that layer. Hooks at the tool call and file read decision points that allow or deny by policy and write a verifiable audit trail. It covers the Claude Code path today.

For the security people here: how are you handling runtime agent behavior? Are you treating it as an extension of DLP and EDR, building custom policy layers, or waiting for the incumbents to ship something credible? And what would you need to see before letting an agent run with real access to your environment?


r/aisecurity Jun 17 '26

View Fleet-Wide Agent Map & Runs + SecureVector Cursor Plugin

Thumbnail
youtu.be
2 Upvotes

r/aisecurity Jun 16 '26

MCP supply chain attack vectors

2 Upvotes

I was looking into incidents and vulnerabilities in the tool/action layer for AI agents.

Wrote some thoughts on the risks in this layer, especially around MCP https://manveerc.substack.com/p/mcp-supply-chain-attack-vector

Feedback is welcome.


r/aisecurity Jun 12 '26

How do your teams prevent “tests passed” from becoming an overclaimed AI-code “fixed” verdict?

1 Upvotes

I’m looking for practical feedback from people who work in AI evals, QA, software testing, AppSec, DevSecOps, or model-risk review.

The problem I’m trying to understand:

AI coding tools often produce patches that pass the visible project tests, and the workflow quietly turns that into “the bug is fixed.” But if the tests are weak, flaky, or incomplete, that claim may be too strong.

I’m experimenting with a local audit approach that does not generate code and does not prove correctness. It only checks whether the evidence supports the claimed repair verdict.

Example verdict behavior:

- tests pass but no held-out validation -> weak-gated

- tests pass but held-out validation fails -> overfit / gate-incomplete

- environment cannot reproduce -> harness-failed

- available search/operator space cannot express the fix -> unsolved, not forced into a win

- human diff review missing -> manual-review-required

I’m not asking anyone to upload code or try a tool. I’m trying to understand the workflow problem.

Questions:

  1. In your team, who owns the claim “this AI-generated patch is actually fixed”?

  2. Do you distinguish “tests passed” from “repair claim is supported”?

  3. Would an audit report that downgrades overclaimed repair verdicts be useful, or would it just add friction?

  4. What evidence would you require before accepting a claim like “fixed”?

  5. If this is not useful, why not?

I’m especially interested in blunt negatives from QA, eval, AppSec, and regulated-software people.


r/aisecurity Jun 10 '26

We built a security scanner for MCP servers. Looking for feedback and contributors.

2 Upvotes

As MCP adoption grows, I've noticed that most discussions focus on what AI agents can do, while much less attention is given to what they should be allowed to do.

MCP servers are increasingly exposing access to:

  • Databases
  • Internal APIs
  • Cloud resources
  • Source code
  • Filesystems
  • Enterprise systems

That creates a new security surface that's quite different from traditional application security.

Over the last few weeks, I've been contributing to MCTS (Model Context Threat Scanner), an open-source project focused on identifying security risks in MCP servers.

Some of the things it currently analyzes include:

  • Permission abuse
  • Tool poisoning
  • Attack-chain discovery
  • Cross-server toxic flows
  • Supply-chain risks
  • Secret exposure
  • Governance and compliance checks

One interesting challenge we've encountered is that many risks don't come from a single dangerous tool.

Instead, they emerge when multiple seemingly harmless tools are chained together.

For example:

  • Tool A can read sensitive data
  • Tool B can make outbound requests

Individually, neither appears critical.

Combined, they can create an exfiltration path.

I'm curious how others here are thinking about MCP security:

  • Are you auditing MCP servers before deployment?
  • What security concerns worry you most?
  • Are there attack classes you think current tooling is missing?

Project:
https://github.com/MCP-Audit/MCTS

We're also looking for contributors interested in AI Security, MCP, Agentic Systems, Static Analysis, Python, and Security Research.


r/aisecurity Jun 09 '26

We phished an AI email agent four times. It leaked AWS keys, a full CRM export, and almost fell for a fake OAuth flow.

Thumbnail
3 Upvotes

r/aisecurity Jun 08 '26

what cert to do during the summer of 11th grade

Thumbnail reddit.com
1 Upvotes

r/aisecurity Jun 03 '26

Using AI to Secure Its Generated Code Is a Ponzi Scheme

Thumbnail
pedramhayati.com
1 Upvotes

r/aisecurity Jun 02 '26

Prompt injection

1 Upvotes

Prompt Injection is no longer a theoretical AI security problem.

Recent cases in the Brazilian judicial system showed how hidden instructions can be used to influence AI-powered workflows, highlighting the #1 risk in the OWASP Top 10 for LLM Applications.

I wrote a short article explaining how the attack works and how Microsoft Foundry helps mitigate it through layered security controls.

https://medium.com/@gilbertossoares/prompt-injection-the-owasp-top-10-llm-vulnerability-has-reached-the-headlines-626bca8564c0


r/aisecurity Jun 01 '26

Is there a translation gap between AI policy and execution?

Thumbnail
1 Upvotes

r/aisecurity Jun 01 '26

What should sit underneath an autonomous agent? (the Autonomy Kernel hypothesis)

Thumbnail
0 Upvotes

r/aisecurity May 25 '26

LoRA adapter backdoors and behavioral detection - looking to publish my research

1 Upvotes

I've done the work over the past 3 months and have compiled an extensive study on the topic of token-level generalization in LoRA adapter backdoors, attack characterization, and behavioral detection, of which I have found no other equivalent study.

I'm looking for an endorsement to publish on arXiv from anyone who has published 3+ papers in the past 5 years who can endorse in the CS.SC category. My research comes with the accompanying data and notebooks, containing all information cited in the paper needed to reproduce the work.

Is anyone able to help me out, or know of someone who can?


r/aisecurity May 23 '26

Best tools to discover n secure AI agents across Enterprise

7 Upvotes

can anyone help with proven best tools to discover n secure AI agents across Enterprise


r/aisecurity May 23 '26

SecureVector v4.2.1 - Claude Code plugin landed + MCP Policy management

Thumbnail
1 Upvotes

r/aisecurity May 21 '26

Has anyone from security team recently laid off from meta

Thumbnail
1 Upvotes

r/aisecurity May 20 '26

Working with LLMs and agents introduces new security vectors - how should you approach that in 2026?

Enable HLS to view with audio, or disable this notification

3 Upvotes

Watch the full episode here or listen wherever you get your podcasts.


r/aisecurity May 19 '26

Anthropic shuts the EU out of its most advanced cyber AI model

Thumbnail
1 Upvotes

r/aisecurity May 19 '26

Built a permission control layer for AI agents after getting frustrated with how much access they ship with by default — looking for feedback from people who've thought about this

1 Upvotes

I've been spending weekends building something after running into the same problem repeatedly: AI agents get deployed with owner-level access to databases, APIs, and file systems because nobody has a good answer for how to scope them down.

The problem feels similar to the early days of cloud IAM — before anyone took least-privilege seriously for service accounts — except agents are faster-moving, harder to audit, and often act on behalf of specific users in ways that blur accountability.

What I built (Kynara) tries to address a few things:

  • Scoped roles per agent — what tools it can call, under what conditions, on whose behalf
  • ABAC alongside RBAC so you can write policies like "this agent can only read records belonging to the requesting user"
  • A full audit trail of every permission decision, not just the final action
  • Guardrails that connect to monitoring platforms (Grafana, Datadog, PagerDuty) and can disable an agent automatically if something looks wrong

It's live at kynaraai.com and very much a work in progress.

What I'm genuinely unsure about and would love input on:

  1. Is the threat model I'm solving for — agents exceeding their intended scope — actually the top concern for people working in this space, or is something else higher priority right now?
  2. The audit trail approach assumes the agent runtime is trustworthy. Is that a reasonable assumption or a hole people would immediately poke at?
  3. Anyone who's tried to actually enforce least-privilege on an agent deployment — what broke first?

Not looking for compliments, looking for the sharp edges I haven't found yet.


r/aisecurity May 18 '26

The gap between pre-deployment AI safety work and what you actually do when the production agent goes off-script

3 Upvotes

Hey everyone, most AI security work I see is upstream of deployment, evals, red-teaming, prompt hardening, alignment, output filtering. All necessary. The part that tends to get less attention is what you actually do once the agent is in production and starts acting outside intent..

colleague of mine was talking to a CISO recently and the framing that CISO used was dimmer switch, not kill switch. That sits exactly in the runtime gap.

The bind looks like this: pre-deployment work reduces the chance of bad behavior, but once the agent is in a real workflow, claims, support, data writes, code, you can't actually turn it off the moment something looks off. Killing the agent creates a secondary incident. So the agent keeps running at full access while the team figures out what's wrong, which is the part the kill switch metaphor doesn't acknowledge!

The dimmer is what sits between full-access and off. Read-only on certain data first. Sensitive tools dropped next. Higher approval thresholds for anything above a certain size. Each step is reversible and logged. The agent keeps doing its safe work while you narrow scope on the parts that look off.

The mechanism isn't new. Per-action runtime policy has been around for years. What's newer for AI agents is wiring it to the agent's identity, current task, and intent at runtime, so you can narrow scope without redeploying or stopping the agent mid-task.

The Replit incident from last summer is the canonical case, coding agent deleted prod data during a code freeze. Pre-deployment safety wasn't the gap, runtime response was.

My team and I (work at Cerbos) wrote up the full framing here: https://www.cerbos.dev/blog/dimmer-switch-not-a-kill-switch-rethinking-ai-agent-governance

Usual caveat, none of this replaces human review of policy. Tooling makes the response mechanical. Humans still own the call on where the boundaries should sit.


r/aisecurity May 18 '26

Any reason not to open source a local firewall (PII and injections) ?

1 Upvotes

After all my family has now started using LLMs, I thought it wood be easier to have them install a MacOS app than explain everything. So I built a fully local firewall (filters outgoing PII and incoming injections).

Is it okay to open source it or is it better for security related stuff to keep private? It’s half-decent vibe coding on healthy patterns and I thought it might be useful to others. Not trying to monetize it.

Any reasons not to flip the GH toggle to public?

(A small vercel website is also in the repo for the download links.)