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

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
The Cloudflare Blog
V
Visual Studio Blog
罗磊的独立博客
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
D
Docker
Last Week in AI
Last Week in AI
B
Blog RSS Feed
C
Check Point Blog
J
Java Code Geeks
The GitHub Blog
The GitHub 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
Supply Chain Attacks Plague npm, Cloud Devs Expose Thousa...
soy · 2026-04-24 · via DEV Community

soy

Supply Chain Attacks Plague npm, Cloud Devs Expose Thousands of Secrets

Today's Highlights

Recent reports highlight critical supply chain attacks targeting popular npm packages like Bitwarden CLI and a self-propagating worm, jeopardizing developer environments. Simultaneously, a pervasive issue of exposed live secrets in cloud development underscores persistent misconfigurations in critical infrastructure.

Bitwarden CLI npm package compromised to steal developer credentials (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1sttosq/bitwarden_cli_npm_package_compromised_to_steal/

The Bitwarden CLI, a widely used command-line interface for managing secrets, was briefly compromised when attackers uploaded a malicious package to the npm registry. This sophisticated supply chain attack involved injecting a credential-stealing payload into the bitwarden/cli package, designed to exfiltrate sensitive developer credentials and potentially spread to other projects. The compromise leveraged the trust developers place in official packages, highlighting the increasing sophistication of attacks targeting software supply chains. The malicious version was quickly identified and removed, but not before an unknown number of downloads occurred. Developers who installed or updated the Bitwarden CLI from npm around the time of the incident are strongly advised to check their system for indicators of compromise, revoke any credentials that might have been exposed, and ensure they are running a clean, verified version of the CLI. This incident serves as a stark reminder of the continuous need for rigorous supply chain security practices, including package integrity checks and a secure development lifecycle for all dependencies.

Comment: This incident is a wake-up call; even tools we trust implicitly can be weaponized. Always verify package integrity and implement strong credential rotation policies, especially for automation accounts.

A Self-Propagating npm Worm Is Actively Spreading Through Developer Environments (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1stdoef/a_selfpropagating_npm_worm_is_actively_spreading/

A new threat in the form of a self-propagating worm is reportedly circulating within developer environments, primarily spreading via malicious npm packages. This worm exploits developer trust and common workflow practices to infect machines, then seeks to propagate itself by injecting malicious code into other projects or potentially publishing new compromised packages. The attack vector likely involves social engineering, typo-squatting, or exploiting vulnerabilities in a developer's environment to initially gain a foothold. Once active, the worm can lead to data theft, further supply chain compromises, and persistent access for attackers. Organizations and individual developers are urged to enhance their vigilance when installing new npm packages, utilize dependency scanning tools to detect known vulnerabilities or suspicious behavior, and strictly adhere to the principle of least privilege in their development setups. Regular security audits of development environments and network segmentation can also help contain such threats and limit their propagation.

Comment: The idea of a self-propagating worm in dev environments is terrifying. We need better sandboxing for development tools and stricter egress controls to prevent such lateral movement and exfiltration.

Thousands of Live Secrets Found Across Four Cloud Development Environments (r/netsec)

Source: https://reddit.com/r/netsec/comments/1ssyvow/thousands_of_live_secrets_found_across_four_cloud/

A recent investigation has uncovered thousands of live, sensitive secrets openly exposed across at least four major cloud development environments. These exposed secrets, which include API keys, database credentials, and internal service tokens, represent a critical security vulnerability that could grant attackers direct access to cloud resources, customer data, and internal systems. The primary causes are often misconfigurations, hardcoding secrets directly into repositories, or inadequate access controls in development and staging environments that are accessible from the internet. While specific cloud providers were not explicitly named, such vulnerabilities are pervasive across the industry when best practices for secrets management are not strictly followed. This finding underscores the urgent need for organizations to implement robust secrets management solutions, conduct regular security audits of their cloud configurations, and educate developers on secure coding practices to prevent accidental exposure. Adopting secrets rotation, environment variables, and dedicated secret stores (like HashiCorp Vault or AWS Secrets Manager) is crucial for mitigating this widespread risk.

Comment: This is a classic 'oops' at scale. Secrets management needs to be an integral part of every CI/CD pipeline and environment setup, not an afterthought. Automation is key to preventing these widespread exposures.