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

推荐订阅源

腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
D
DataBreaches.Net
D
Docker
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
Martin Fowler
Martin Fowler
U
Unit 42
Engineering at Meta
Engineering at Meta
IT之家
IT之家
Vercel News
Vercel News
B
Blog RSS Feed
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog

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
52,000 packages passed every security check. Chainguard b...
Andrew Kew · 2026-06-15 · via DEV Community
Cover image for 52,000 packages passed every security check. Chainguard blocked them anyway.

Andrew Kew

Open-source packages are supposed to fail security scans if they're dangerous. Chainguard has found 52,000 that don't — and says that's the whole problem.

The company launched a new source code scanner this week that catches what it's calling "greyware": packages that pass every existing scan on the market, do exactly what they advertise, and still export your credentials, harvest your API keys, or establish a permanent backdoor to a third-party server.

"Frank in finance is not a coder. He's an FP&A guy. And so along comes a solution that can say, hey, you can vibe code stuff into existence — but don't just grab random stuff off the internet that could come from anywhere or be manipulated by bad actors." — Quincy Castro, Chainguard CISO

What actually changed

  • New scanner, new category. Traditional malware hides what it does. Greyware doesn't — it just buries the harmful parts in plain sight. Chainguard is now scanning for both.
  • Scale: 100,000+ packages scanned per day. 52,000 already blocked as malware or greyware.
  • Live examples still on npm: Packages like chrome-tools and @robinpath/cloud-cli openly export modules for harvesting Chrome passwords, cookies, and credit card data, or establish permanent backdoors to third-party servers. All five flagged examples passed npm's standard seven-day trust cooldown. All are still downloadable.
  • Pre-emptive, not reactive: The scanner evaluates packages before they're added to Chainguard Libraries — not when a developer requests them — eliminating the exposure window where cached malicious packages can slip through before detection fires.

Why vibe coding makes this a structural problem

Greyware isn't new. What's new is that agentic development has removed the human who might have caught it.

Manual dependency review was already losing before AI coding tools arrived. Now you have non-technical users spinning up production workflows via natural language, with AI agents automatically pulling in packages — and no SRE standing between the developer and the damage.

The threat model is specific: a knowledge worker vibe codes a workflow automation tool, their agent pulls in a package that requires access tokens to function, and those tokens get quietly exported to a remote command-and-control server. The package passed the scan. It did exactly what it said it would do. Nobody notices until something downstream goes wrong.

The lesson

Security scanning has always optimised for finding things that hide. Greyware doesn't hide. It tells you exactly what it does and counts on you not reading carefully enough to notice the bad parts.

Supply chain security has been dominated by typosquatting, dependency confusion, and compromised maintainer accounts — threats where something is concealed. This is a different category: the package is transparent about its behaviour, and honest behaviour can still be harmful.

What to do

  • Using Chainguard Libraries for npm? You're already covered. The scanner is live and running.
  • Not using Chainguard? Audit recent dependency installs for anything requesting access tokens, network permissions, or credential access beyond its stated purpose.
  • Shipping agentic workflows? Treat every auto-installed dependency as untrusted. Your AI agent doesn't read READMEs carefully. That's now your risk surface.
  • Security team? The 52,000-package data point is a useful forcing function for getting greyware onto your threat model before it ends up on your incident report.

Coverage is currently npm/JavaScript only — more ecosystems are coming in the next few weeks.

Source: The New Stack — Chainguard's greyware scanner launch

✏️ Drafted with KewBot (AI), edited and approved by Drew.