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

推荐订阅源

爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 【当耐特】
The Cloudflare Blog
B
Blog
Last Week in AI
Last Week in AI
小众软件
小众软件
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 叶小钗
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
A
About on SuperTechFans
雷峰网
雷峰网
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Fake AI Agent Skill Slipped Past Every Scanner and Reache...
Etairos.ai · 2026-06-24 · via DEV Community

Etairos.ai

TL;DR

  • what: Security firm AIR planted a fake skill named brand-landingpage that passed every scanner it tested, borrowed a marketplace repo's 36,000 stars, and pointed agents at an external setup page it controlled and later swapped for a malicious payload.
  • impact: AIR claims the skill reached roughly 26,000 agents including some on corporate accounts, and the same foothold could have read files, exfiltrated data, or pivoted to internal systems bounded only by the agent's access.
  • fix: Treat skills as software: vet what a skill points to and not just what ships inside it, route all skills through a single source you control, pin versions, re-check on any change, and hold agents to least privilege.
  • who: Any organization where users install AI agent skills from marketplaces, especially via clean-scan and high-star trust signals.

Security firm AIR built a fake AI agent skill, pushed it through a popular skill marketplace and an Instagram ad, and says it reached roughly 26,000 agents, including some on corporate accounts. Every skill scanner the firm tested marked it safe. The payload was harmless by design, collecting only the user's email address, but the foothold was real: a clean scanner verdict, borrowed GitHub stars, and an open-source reputation all failed to catch it.

A skill is a bundle of instructions an agent loads into its own context and follows with roughly the authority of a user prompt. That trust is the entire problem, and it is the reason skill-scanning tools exist. AIR's experiment shows those tools are checking the wrong thing.

How a clean package borrowed trust

The skill, named brand-landingpage, claimed to build a landing page using Google's Stitch design tool and was aimed squarely at non-technical users. To look credible, AIR went after two trust signals. For stars, it opened a pull request to a skill marketplace repo with around 36,000 stars and 156 skills; the PR was merged after a few days, so the skill inherited the repo's count. Then it ran an Instagram ad targeting marketers, salespeople, and designers, who installed it and put it to work.

For the clean scan, AIR exploited a structural blind spot. The skill carried no setup instructions of its own. It told the agent to install the 'Stitch SDK' by following documentation at an external link, stitch-design.ai, a domain AIR controls. The real Stitch lives at stitch.withgoogle.com. The lookalike domain is the kind of detail a non-technical installer never checks.

Why the scanners missed it

The scanners AIR tested, Cisco's, NVIDIA's, and the ones wired into skills.sh, analyze the package you hand them: the SKILL.md and the files shipped alongside it. At first the external link led to the genuine Stitch docs, so the scanners saw a clean package pointing at a plausible setup page and cleared it. The page the agent would actually fetch and follow sat outside the scan entirely.

Once the skill was installed widely, AIR swapped the page behind the link. The new version told the agent to download and run a script. In the demo it only mailed the user's address back to AIR, which is how the firm counted the agents it reached. A real operator could have used that foothold to read files, move data, or hit internal systems, bounded only by what the agent could reach.

⚠️ The scan is a snapshot, the payload is live — A scanner checks a fixed package at one moment. The page a skill points the agent to can be rewritten at any time after the check clears. Keep the submitted skill clean, host the payload on a site you control, and the scan never sees the malicious version. This is not a bug in any one scanner; it is the model.

Not the first to prove it

Three weeks earlier, Trail of Bits bypassed ClawHub's malicious-skill detector, Cisco's scanner, and all three scanners wired into skills.sh. Its conclusion was blunt: a scanner checks a fixed package while an attacker keeps tweaking the payload until it passes. Real campaigns have used the same trick for months, keeping the submitted skill clean and hosting the payload on a site the agent only fetches at install.

Anthropic's own documentation already warns that skills fetching external URLs are risky for exactly this reason, since the content can change after the skill is vetted. Separate research this year found scanners often disagree, because each judges a skill in isolation, blind to its external links and to what changes after review. AIR did not find a new bug. It lined up every weak trust signal around agent skills into one run: stars that can be borrowed, a scan that reads a snapshot, and a link that can be rewritten after the check clears.

What to do

The read for defenders is the same one researchers keep landing on, now with a sharper example behind it. Treat skills as software, not text. Vet what a skill points to, not just what ships inside it. Most of these add-ons get installed with no review, so the first job is finding what is already running in your environment.

  • Inventory first: enumerate every skill already installed across user and corporate agent accounts before anything else.
  • Route new skills through a single source you control, and re-check them whenever anything changes.
  • Pin versions. A clean result at install does not stay clean if the skill phones out to a link someone else can edit.
  • Hold agents to least privilege. Assume any external instruction an agent fetches runs with the agent's full access.
  • Block or alert on skills that fetch external setup pages, and flag lookalike domains like stitch-design.ai versus stitch.withgoogle.com.

Read the numbers skeptically

The method holds up even if the count doesn't — AIR is launching a managed skill marketplace and closes its write-up pitching it, so the 26,000 figure, the corporate-account detail, and the full-control claim are the company's own and are not independently confirmed. What is verified: the named scanners really do judge only the submitted package, the external-link blind spot has been independently demonstrated, and stars plus a clean scan are exactly the signals the ecosystem still treats as proof.

Whether the real figure is 26,000 or a fraction of it, the gap it walks through is one defenders have not closed. The trust signals everyone leans on for agent skills, marketplace stars, open-source reputation, and a passing scan, were all defeated in a single run by a team that controlled one external link. Until vetting follows what a skill points to and re-runs on change, every skill marketplace is a supply chain you do not control.


Originally published on RedEye Threat Intelligence.