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

推荐订阅源

WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
U
Unit 42
L
LangChain Blog
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
I
InfoQ
P
Proofpoint News Feed
D
DataBreaches.Net
Martin Fowler
Martin Fowler
H
Help Net Security
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
B
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
Linux Root Exploit (CVE-2026-31431), SAP npm Supply Chain...
soy · 2026-05-01 · via DEV Community

soy

Linux Root Exploit (CVE-2026-31431), SAP npm Supply Chain Attack, & Homelab Secrets with Infisical

Today's Highlights

This week, a critical Linux kernel vulnerability (CVE-2026-31431) allowing root access across major distributions was disclosed, alongside a significant supply chain attack compromising official SAP npm packages. We also highlight a practical guide for securing homelabs using tools like Infisical and PocketID for declarative secrets management.

New critical CVE - Root on Every Major Linux Distribution (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1sze8dx/new_critical_cve_root_on_every_major_linux/

This item details a newly discovered critical Linux kernel vulnerability, identified as CVE-2026-31431, also known as "Copy Fail." The exploit allows an unprivileged local user to gain root privileges on affected Linux systems, including most major distributions. The ease of exploitation is particularly concerning, requiring only a small, 732-byte script and no complex race conditions. This vulnerability underscores the continuous need for vigilance in system patching and security updates, as it represents a straightforward path to complete system compromise from a local perspective.

Comment: As a developer, knowing a simple local bug can grant root access is a stark reminder to keep systems patched diligently, especially in shared or multi-user environments.

Official SAP npm packages compromised to steal credentials (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1szq1oz/official_sap_npm_packages_compromised_to_steal/

This story reports a critical supply chain attack targeting official npm packages maintained by SAP. Adversaries successfully compromised these packages, injecting malicious code designed to steal user credentials. Such attacks highlight the severe risks associated with software supply chains, where compromise at one point can propagate to a vast number of downstream users. Organizations relying on open-source dependencies, especially those from major vendors, must implement robust security practices like integrity checks, dependency scanning, and least-privilege access for package maintenance to mitigate the threat of credential theft and broader system compromise.

Comment: This incident emphasizes that even "official" packages can be vectors for supply chain attacks; always verify integrity and consider locking down dependencies.

How I got my homelab to a fully declarative state with Terraform + Komodo + Gitea + Infisical + PocketID — and had to build a missing piece myself (r/selfhosted)

Source: https://reddit.com/r/selfhosted/comments/1t0632g/how_i_got_my_homelab_to_a_fully_declarative_state/

This article presents a practical guide on establishing a fully declarative homelab environment, with a strong focus on secure secrets management and identity. The author details an architecture leveraging tools like Terraform for infrastructure as code, Gitea for version control, and crucially, Infisical for secrets management and PocketID for identity. This setup provides a blueprint for maintaining sensitive data securely and automating access control in self-hosted environments. The emphasis on declarative configuration and dedicated secrets management tools offers a robust approach to hardening personal or small-scale infrastructure against common vulnerabilities.

Comment: Integrating Infisical and PocketID for secrets and identity in a declarative setup is a powerful move towards robust security; it simplifies management while bolstering defense in depth.