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

推荐订阅源

B
Blog
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
罗磊的独立博客
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
Jina AI
Jina AI
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
C
Check Point Blog
GbyAI
GbyAI

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
Microsoft Exchange Zero-Day, Linux Kernel LPE, and an Ope...
soy · 2026-05-16 · via DEV Community

soy

Microsoft Exchange Zero-Day, Linux Kernel LPE, and an Open-Source Docker Scanner

Today's Highlights

This week, urgent patches are required for a critical Microsoft Exchange zero-day and a new Linux kernel privilege escalation flaw, 'Fragnesia,' with a PoC. In more practical news, a new open-source Docker security scanner offers a quick way to audit web applications and container hosts.

Microsoft Warns of Exchange Zero-Day Flaw Exploited in Attacks (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1tdvn3p/microsoft_warns_of_exchange_zeroday_flaw/

A severe zero-day vulnerability affecting Microsoft Exchange Server has been reported, with evidence of active exploitation in the wild. This critical flaw poses a significant threat to organizations utilizing on-premise Exchange deployments, potentially enabling attackers to achieve unauthorized access, execute arbitrary code, or compromise sensitive data.

Microsoft has issued an urgent warning, strongly advising all affected administrators to prioritize and apply the available security patches immediately to mitigate the risk of exploitation. The specific technical details of the vulnerability and the full extent of the attack campaigns are still under investigation. However, the confirmed active exploitation underscores the extreme urgency for defenders to secure their Exchange environments against this sophisticated threat and remain vigilant for any indicators of compromise.

Comment: Exchange zero-days are always a high-stakes game for blue teams. Prioritize patching and scrutinize logs for indicators of compromise now if you're running on-prem Exchange.

New Linux Privilege Escalation Flaw ‘Fragnesia’ Disclosed; PoC Available (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1tdwn1x/new_linux_privilege_escalation_flaw_fragnesia/

A new local privilege escalation (LPE) vulnerability, critically impacting the Linux kernel, has been publicly disclosed and named 'Fragnesia.' This flaw allows a local attacker to elevate their privileges, potentially gaining full root access on vulnerable systems. The disclosure is accompanied by a readily available Proof-of-Concept (PoC) exploit, which significantly lowers the barrier for both security researchers and malicious actors to develop and deploy exploits for this vulnerability.

This is notably the third critical Linux kernel LPE vulnerability to emerge within a short timeframe, highlighting persistent security challenges within the kernel's architecture and the ongoing need for robust patching strategies. System administrators are strongly advised to monitor official channels for immediate kernel updates and apply them without delay to protect their Linux-based infrastructure.

Comment: Another Linux kernel LPE with a PoC. This means it's critical to identify affected kernels and get those patches rolled out before it hits mass exploitation.

Open-Source Docker Security Scanner for Website Audits Released (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1te3rq9/i_opensourced_a_docker_security_scanner_i_use_to/

An open-source Docker security scanner has been released, providing a practical tool for auditing websites and their underlying containerized infrastructure. Developed and open-sourced by a cybersecurity professional, this scanner streamlines the process of conducting comprehensive security checks, allowing users to perform detailed analyses with a single command.

The tool is capable of identifying a range of potential security weaknesses, including publicly exposed WHOIS and DNS records, open ports, and various SSL/TLS configuration vulnerabilities. By packaging the scanning functionalities within a Docker container, it ensures a consistent, reproducible, and easily deployable environment for conducting audits.

This new offering serves as a valuable resource for developers and system administrators seeking a straightforward, actionable solution to enhance their web application security posture, improve container security, and implement hardening best practices efficiently. Its ease of use makes it ideal for integrating into CI/CD pipelines or for regular, ad-hoc security assessments.

Comment: This looks like a quick win for dev teams to integrate basic web and Docker host scanning into their CI/CD or regular audits. Easy to run locally and get immediate feedback.