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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
有赞技术团队
有赞技术团队
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
罗磊的独立博客
T
Tailwind CSS Blog
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

Sysdig Blog

Masterclass: AI is more than ChatGPT and LLMs CVE-2026-39987 update: How attackers weaponized marimo to deploy a blockchain botnet via HuggingFace Kubernetes 1.36 - New security features 5 steps to securing AI workloads Marimo OSS Python Notebook RCE: From Disclosure to Exploitation in Under 10 Hours Security briefing: March 2026 The Sysdig MCP server is now available in AWS Marketplace Risk isn’t reduced until you take action: How teams resolve issues in the cloud AI infrastructure security: Why it deserves its own category Three pillars for building effective runtime-powered cloud defense, the right way Closing the cloud security gap with runtime security Seeing risk isn’t stopping it: Why visibility alone isn’t enough TeamPCP expands: Supply chain compromise spreads from Trivy to Checkmarx GitHub Actions AI coding agents are running on your machines — Do you know what they're doing? Runtime security for AI coding agents: Protecting AI-assisted development How runtime insights power every cloud security use case CVE-2026-33017: How attackers compromised Langflow AI pipelines in 20 hours Inline Cloud Response: Accelerating AWS threat containment for SOC teams Runtime malware detection for AWS Fargate Detecting CVE-2026-3288 & CVE-2026-24512: Ingress-nginx configuration injection vulnerabilities for Kubernetes Malware detection with Sysdig Security briefing: February 2026 Leveling up Kubernetes Posture: From baselines to risk-aware admission Eliminating runtime blind spots: How CleanStart and Sysdig build continuous trust across the container lifecycle LLMjacking: From Emerging Threat to Black Market Reality Real risks live at runtime: Why CISOs must care about deep telemetry in 2026 Sysdig named a Leader in the Forrester Wave™: Cloud Native Application Protection Solutions, Q1 2026 How to run rootless containers AI-assisted cloud intrusion achieves admin access in 8 minutes Security briefing: January 2026
Detecting CVE-2024-1086: The decade-old Linux kernel vuln...
Alberto Pellitteri and Michael Clark · 2025-11-20 · via Sysdig Blog

On October 31, 2025, CISA confirmed that CVE-2024-1086, a privilege escalation vulnerability in the Linux kernel's netfilter component, is being actively exploited in ransomware campaigns. This use-after-free vulnerability, present in the Linux kernel for over 10 years, provides attackers with a path to gaining root privileges on compromised systems. It was first discovered in January 2024, with Linux publishing a patch the following month. With privileged access provided by the vulnerability, however, attackers can still launch ransomware operations. 

CVE-2024-1086 opens a path to root privileges for threat actors, so identifying and patching it should be a priority for organizations with Linux infrastructure. Since this vulnerability has been present for 10 years, legacy and seldom-relied-on systems may still be exposed. Unpatched, CVE-2024-1086 creates an open surface for ransomware attacks. 

This blog, based on the Sysdig Threat Research Team’s (TRT) investigation and analysis of CVE-2024-1086, explores how attackers are exploiting the vulnerability and what defenders can do to stay ahead.

Technical analysis of CVE-2024-1086

Vulnerability details

CVE-2024-1086 (CVSS 7.8) resides in the nft_verdict_init() function of the Linux kernel’s netfilter (nftables) component. The threat stems from the function’s failure to properly validate verdict parameters, which allows attackers to trigger a double-free condition in the kernel’s memory management. 

The vulnerability was introduced via a commit in February 2014, making it present in kernel versions from 3.15 to 6.8-rc1. The versions requiring urgent patching are: Linux kernels between v5.14 and v6.6, including Debian, Ubuntu, and other distributions. The following versions were released with patches applied: v5.15.149+, v6.1.76+, and v6.6.15+.

Exploit analysis

This exploit leverages unprivileged user namespaces in order to access the nf_tables component, which includes the double-free vulnerability.  By allocating a large number of socket buffers (SKBs), and then passing malformed SKBs through nf_tables, the double-free vulnerability can be triggered, allowing attackers to run malicious code in the kernel. The exploit then finds and overwrites modprobe_path, which enables attackers to execute a root shell.

Prerequisites for exploitation:

  • User namespaces enabled 
  • Unprivileged user namespaces accessible (sysctl kernel.unprivileged_userns_clone = 1)
  • nf_tables module enabled 

These configurations are enabled by default on major enterprise distributions, including Debian and Ubuntu, as well as many cloud-optimized images, significantly expanding the attack surface.

This vulnerability is particularly concerning in environments with:

  • Multi-tenant Linux systems with unprivileged user accounts.
  • Container hosts where user namespaces are required for functionality.
  • Linux servers exposed to the internet with vulnerabilities or weak passwords.

Ransomware campaigns

CISA's classification of CVE-2024-1086 as "known to be used in ransomware campaigns" emphasizes its severity. While CISA hasn't attributed the exploitation to any specific group, the vulnerability provides ransomware operators with several critical capabilities:

  1. Post-compromise escalation: The exploit grants root privileges on affected systems, enabling full administrative control.
  2. Defense evasion: Root access allows attackers to disable security tools, clear logs, and establish persistence.
  3. Lateral movement: Elevated privileges allow additional system compromise across environments.

The timing of active exploitation coincides with the increase of Linux-targeting ransomware groups, such as RansomHub, Akira, and LockBit. RansomHub, in particular, has emerged as the dominant ransomware-as-a-service (RaaS) group, conducting over 600 attacks using GoLang-based Linux malware designed to target enterprise environments.

Once initial access is gained through vulnerable services or stolen credentials, CVE-2024-1086 provides the elevated privileges necessary for system-wide encryption and data exfiltration operations. Public proof-of-concept (PoC) code, available since March 2024, has lowered the barrier to entry for even moderately skilled attackers.

Detecting CVE-2024-1086 exploitation with Sysdig Secure

Sysdig Secure includes out-of-the-box detection for CVE-2024-1086 with the rule “Possible Exploitation of Kernel Netfilter Vulnerability (CVE-2024-1086)” in the Sysdig Runtime Behavioral Analytics policy.

Sysdig Runtime Behavioral Analytics policy

Ransomware detection is also provided through multiple mechanisms, including the Malware Detection policy and the runtime threat detection rule “Ransomware Filenames Detected,” which detects common file extensions and ransom note filenames. The Ransomware rule is enabled by default in the Sysdig Runtime Threat Detection policy.

Conclusion

CVE-2024-1086 is a critical security vulnerability, now included in CISA's KEV catalog, which bridges initial access to full system compromise and is highly valued by ransomware operators. The combination of reliable exploitation, public PoC code, and sophisticated Linux-targeting ransomware creates extreme risk to organizations if the vulnerability is not patched. 

Since this vulnerability grants a path to root privileges, patching CVE-2024-1086 is a top priority for all Linux infrastructure. Its decade-long presence means legacy and forgotten systems remain exposed, offering persistent footholds for ransomware attacks. 

While patching the vulnerability is the primary defense, robust runtime threat detection and response capabilities are crucial for identifying exploitation attempts, neutralizing them, and detecting post-compromise lateral movement before patches can be universally applied.

Follow the Sysdig Threat Research Team for ongoing analysis and updates on critical threats, like CVE-2024-1086.