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

推荐订阅源

罗磊的独立博客
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
有赞技术团队
有赞技术团队
Vercel News
Vercel News
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
The Cloudflare Blog
B
Blog
C
Check Point Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
U
Unit 42
D
Docker
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
A
About on SuperTechFans

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
Zero-Day Exploits, GitHub Actions Supply Chain Attacks, a...
soy · 2026-05-27 · via DEV Community

soy

Zero-Day Exploits, GitHub Actions Supply Chain Attacks, and OTP Auth Flaws

Today's Highlights

This week's top security news features a critical zero-day actively exploited in KnowledgeDeliver LMS and widespread supply chain cache poisoning targeting open-source projects via GitHub Actions. Additionally, a detailed analysis reveals an OTP rate-limit bypass technique enabling account takeovers through leaked validity signals.

KnowledgeDeliver flaw exploited as a zero-day to install web shells (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1tojdsq/knowledgedeliver_flaw_exploited_as_a_zeroday_to/

This report details the exploitation of a critical zero-day vulnerability within the KnowledgeDeliver learning management system (LMS). Attackers leveraged this previously unknown flaw to gain unauthorized access and deploy the notorious Godzilla web shell on affected servers. The use of a web shell allows attackers persistent remote control over the compromised server, enabling further malicious activities such as data exfiltration, lateral movement within the network, and establishment of command-and-control infrastructure.

The exploitation of a zero-day highlights the severe risks associated with unpatched and custom-built software solutions, especially those facing the internet. Organizations using KnowledgeDeliver LMS are urged to apply any available patches immediately or implement strong compensatory controls, such as strict network segmentation, intrusion detection systems, and continuous monitoring for suspicious activity (e.g., unexpected file writes, outbound connections from the LMS server). This incident serves as a stark reminder that robust security practices, including regular security audits and threat hunting, are crucial in defending against sophisticated attacks that bypass traditional defenses.

Comment: A live zero-day being exploited in the wild is always a critical alert. Understanding how web shells like Godzilla are deployed through such flaws is essential for blue teams to detect and remediate promptly.

GitHub Actions Cache Poisoning is eating open source (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1tohlr3/github_actions_cache_poisoning_is_eating_open/

A significant supply chain attack vector, dubbed "GitHub Actions Cache Poisoning," is reportedly impacting open-source projects. This technique exploits the caching mechanism within GitHub Actions workflows, where attackers can inject malicious code into cached dependencies. When subsequent legitimate builds retrieve these poisoned caches, the malicious code is executed, compromising the build process and potentially the resulting artifacts. This can lead to widespread compromise across downstream projects that rely on the affected open-source component, creating a ripple effect through the software supply chain.

The issue highlights a critical vulnerability in the CI/CD pipeline, specifically within how cached data integrity is handled. Developers and maintainers of open-source projects, and those consuming open-source components via GitHub Actions, must review their caching strategies. Implementing strict cache key management, verifying integrity of cached dependencies before use, and minimizing the scope of cached data are crucial mitigation steps. This attack underscores the need for robust supply chain security practices, extending beyond just source code to include build environments and dependencies.

Comment: This is a direct threat to the software supply chain through a popular CI/CD platform. Developers using GitHub Actions need to immediately audit their cache keys and workflow security to prevent silent code injection.

OTP lockout state leaked valid-code signal, enabling OLX account takeover (r/netsec)

Source: https://reddit.com/r/netsec/comments/1to9pek/otp_lockout_state_leaked_validcode_signal/

This technical write-up details a severe authentication vulnerability that led to account takeover on OLX. The core of the issue was an "OTP correctness leak" within the rate-limit state. Specifically, after a series of invalid OTP attempts, the application would trigger an account lockout. However, the system's response for a valid OTP attempt before the lockout differed from an invalid OTP attempt before the lockout, even if the lockout state was about to be triggered. This subtle difference in response—whether an HTTP status code, error message, or timing—leaked information about the OTP's validity.

An attacker could exploit this by making numerous invalid OTP attempts until the lockout threshold was almost met. Then, they would send a candidate OTP. By observing the subtle response difference (e.g., "account locked" vs. "incorrect OTP, account locked"), they could deduce if their candidate OTP was correct, even without ever fully bypassing the rate limit or completing the verification. This process could be repeated for different OTPs, effectively allowing an attacker to brute-force the OTP one digit at a time without triggering a permanent lockout. The vulnerability underscores the critical importance of consistent and generic error messages and responses in authentication flows to prevent oracle attacks and information leakage, even under rate-limiting conditions.

Comment: This is a classic 'oracle attack' on an authentication mechanism. Developers designing OTP systems must ensure error messages and lockout states don't leak any information about the validity of submitted codes, even in subtle ways.