CVE Radar

CVE Radar Logo
CVERadar

Edition used by more than 30,000 companies in more than 150 countries.
Sign Up For Free

CVE-2024-1086

Critical Severity|Linux
78
SVRS
7.8
CVSSv3
0.84554
EPSS
TAGS
In The WildExploit AvaliableCISA KEVExploit Available
VECTOR STRING
CVSS:3.1AV:LAC:LPR:LUI:NS:UC:HI:HA:H
PUBLICATION DATE2024-01-31
LAST MODIFIED2025-10-21

Deep CVE Analysis in Progress

The system is currently conducting an in-depth analysis of the selected CVE. This includes advanced correlation, vulnerability classification, and cross-referencing with real-time threat intelligence sources. Once the analysis is complete, the page will automatically update with enriched vulnerability data and actionable insights.

Security Intelligence Brief

1. What is this vulnerability and why does it matter?
This is a use-after-free vulnerability, identified as CVE-2024-1086, within the Linux kernel's netfilter: nf_tables component. It can be exploited to achieve local privilege escalation. This vulnerability matters significantly because local privilege escalation allows an attacker with limited access to a compromised system to gain full administrative control (root privileges). This level of access enables attackers to bypass security controls, execute arbitrary code, modify system files, disable security mechanisms, install malware, or exfiltrate sensitive data, severely impacting the system's integrity, confidentiality, and availability.
2. What are the CVSS score, severity level, and disclosure details?
The vulnerability has a CVSS base score of 7.8 out of 10, which is classified as High severity. The disclosure details are as follows:
  • Published Date: January 31, 2024
  • Modified Date: October 21, 2025
  • CISA Known Exploited Vulnerabilities (KEV) Catalog: Added on May 30, 2024, due to observed active exploitation in the wild.
  • CISA Confirmation of Ransomware Exploitation: October 31, 2025, confirming its active use in ransomware campaigns.
3. Which products, vendors, systems, and versions are affected?
This vulnerability affects the Linux kernel and various major Linux distributions that incorporate the vulnerable kernel versions.
  • Affected Component: Linux kernel's netfilter: nf_tables component.
  • Vulnerable Kernel Versions:
    • From kernel version 3.15 up to, but not including, 6.8-rc1.
    • Specifically, kernels between v3.15 and v6.1.76 (excluding v6.1.76).
    • Kernels between v6.2 and v6.6.15 (excluding v6.6.15).
    • Kernels between v6.7 and v6.7.3 (excluding v6.7.3).
    • Linux kernel versions before 6.6.5 are also vulnerable.
  • Affected Distributions/Vendors (examples include, but are not limited to):
    • Ubuntu (Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.10)
    • Red Hat (RHEL 7, RHEL 8, RHEL 9)
    • Debian (Kernel-version 6.1.76-1, and potentially other versions if using affected kernels)
    • Fedora
    • Amazon Linux
    • Oracle Linux
    • Rocky Linux
4. What is the technical root cause and attack vector?
The technical root cause is a use-after-free vulnerability (CWE-416) stemming from improper handling of memory in the Linux kernel's netfilter: nf_tables component.
  • Root Cause: The nft_verdict_init() function incorrectly allows positive values as a "drop error" within the hook verdict. This flaw allows the nf_hook_slow() function to call kfree() twice on the same object, creating a double-free vulnerability. When NF_DROP is issued with a drop error that resembles NF_ACCEPT, it results in the memory being freed twice, leading to memory corruption.
  • Attack Vector: The primary attack vector is local privilege escalation. This means an attacker must already have local access to the vulnerable system. The attacker then exploits the memory corruption to gain elevated privileges, typically root access. The exploit leverages unprivileged user namespaces to access the nf_tables component.
5. How can this vulnerability be exploited?
This vulnerability can be exploited by a local attacker to achieve root privileges on an affected Linux system. The exploitation process typically involves:
  1. Initial Access: An attacker first needs to gain initial, unprivileged access to the target system. This could be achieved through various means such as phishing, stolen credentials, or by exploiting other internet-facing vulnerabilities.
  2. Triggering Double-Free: The attacker then craft malicious input or manipulate the netfilter rules to trigger the double-free condition in the nf_tables component via the nft_verdict_init() and nf_hook_slow() functions.
  3. Memory Manipulation: By leveraging the use-after-free primitive, the attacker can manipulate memory and achieve arbitrary read/write capabilities within the kernel.
  4. Privilege Escalation: The memory manipulation is used to hijack control flow or overwrite critical kernel data structures, allowing the attacker to execute arbitrary code with root privileges.
  5. Post-Exploitation: Once root access is gained, the attacker has full control over the system, enabling actions such as disabling security tools, clearing logs, establishing persistence, deploying ransomware, and exfiltrating sensitive data.
A public Proof-of-Concept (PoC) exploit has been released, demonstrating local privilege escalation on Linux kernels from 5.14 through 6.6, significantly lowering the barrier for exploitation. This PoC often leverages unprivileged user namespaces, which are enabled by default on many distributions like Debian and Ubuntu.
6. What mitigation steps and patches are available?
The primary mitigation for CVE-2024-1086 is to apply the available patches and update the Linux kernel to a non-vulnerable version.
  • Kernel Update: Upgrade the Linux kernel to a version that includes the fix. Specifically, update to Linux kernel 6.8-rc2 or newer. Patched versions include:
    • v5.15.149 or later
    • v6.1.76 or later
    • v6.6.15 or later
  • Specific Commit: The vulnerability is fixed in kernel commit f342de4e2f33e0e39165d8639387aa6c19dff660. Updating past this commit resolves the issue.
  • Distribution-Specific Patches: Apply updates provided by your Linux distribution vendor. For example, Amazon Linux users can run yum update kernel or yum update --advisory ALAS-2024-1919. Most major Linux distributions have released new versions addressing this vulnerability.
  • Temporary Mitigation (Disabling Unprivileged User Namespaces): As a potential temporary mitigation, disabling namespace creation for unprivileged users can restrict the exploit's access to nf_tables.
    • To disable temporarily: Run sudo sysctl -w kernel.unprivileged_userns_clone=0.
    • To disable persistently: Add kernel.unprivileged_userns_clone=0 to a file like /etc/sysctl.d/99-disable-unpriv-userns.conf and apply it.
7. How can vulnerable systems be detected?
To detect vulnerable systems, administrators should check the running Linux kernel version and its configuration:
  • Check Kernel Version: Use the command uname -r to determine the currently running kernel version. Systems running kernel versions between 3.15 and 6.8-rc1 are at risk. More specifically, systems with kernel versions before v5.15.149, v6.1.76, or v6.6.15 are vulnerable.
  • Verify Patch Status: Check if the specific kernel commit f342de4e2f33e0e39165d8639387aa6c19dff660 has been applied to your kernel. This can often be done by inspecting kernel source code or package information.
  • Distribution Package Management: Use your distribution's package manager (e.g., apt, yum, dnf) to query the installed kernel package version and compare it against vendor advisories.
  • Configuration Check: Assess if unprivileged user namespaces are enabled on the system, as the public PoC exploit leverages this feature to access nf_tables.
8. What are the indicators of compromise (IOCs)?
While specific forensic indicators like hashes or IP addresses are not detailed in the provided data, the nature of local privilege escalation and its active exploitation in ransomware campaigns suggest the following potential indicators of compromise (IOCs):
  • Unauthorized Privilege Escalation: Any logged attempts or successful events of an unprivileged user gaining root or elevated system privileges without legitimate authorization.
  • Unusual Process Activity: Detection of unexpected processes running with root privileges, especially those initiated by a non-root user.
  • System Configuration Changes: Unauthorized modifications to critical system files, network configurations, or security settings that would typically require elevated privileges.
  • Malware Deployment: Presence of ransomware binaries, suspicious scripts, or other malicious payloads on the system, particularly in unexpected directories or with elevated permissions.
  • Anomalous Network Connections: Outbound connections from compromised systems to unknown external IP addresses or domains (potential command-and-control or data exfiltration).
  • User Namespace Manipulation: Signs of unprivileged user namespace creation or abnormal activity related to namespace operations, especially in conjunction with attempts to interact with nf_tables.
  • Security Tool Evasion: Attempts to disable, modify, or uninstall security software (e.g., EDR agents, antivirus).
  • Log Tampering: Clearing of system logs or manipulation of audit trails to hide malicious activity.
Security solutions like CrowdStrike's behavior detection (IOAs) and machine learning have been observed preventing exploit attempts and provide coverage for initial access and post-exploitation techniques. CrowdStrike has also released IOAs to prevent the execution of suspicious commands related to this vulnerability.
9. Which threat actors are known to exploit this vulnerability?
Active exploitation of CVE-2024-1086 has been observed in the wild.
  • Initially, CrowdStrike observed two unknown threat actors attempting to leverage CVE-2024-1086.
  • The Cybersecurity and Infrastructure Security Agency (CISA) has confirmed that this vulnerability is being actively exploited in ransomware campaigns.
  • Ransomware groups are increasingly leveraging Linux-targeting ransomware. Specifically, groups such as RansomHub, Akira, and LockBit are mentioned as being active in this space and could be exploiting this vulnerability. RansomHub, in particular, has emerged as a dominant ransomware-as-a-service (RaaS) group using GoLang-based Linux malware.
The public availability of a Proof-of-Concept (PoC) exploit has lowered the barrier to entry for a wider range of threat actors, including those with moderate technical skills.
10. What public intelligence references and advisories exist?
Numerous public intelligence references and advisories exist for CVE-2024-1086:
  • CVE ID: CVE-2024-1086
  • CWE ID: CWE-416 (Use-After-Free)
  • NVD Detail Page: https://nvd.nist.gov/vuln/detail/CVE-2024-1086
  • CISA Known Exploited Vulnerabilities Catalog: Added on May 30, 2024, with further warnings in October 2025 regarding active exploitation in ransomware campaigns.
  • Linux Kernel Git Commit (Fix): The fix is included in commit f342de4e2f33e0e39165d8639387aa6c19dff660. This commit can be found at https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660.
  • Public Proof-of-Concept (PoC) Exploit: A detailed analysis and PoC exploit were published on GitHub by researcher "Notselwyn" on March 26, 2024.
  • Vendor Advisories: Various Linux distributions and security vendors have issued advisories, including Amazon Linux (ALAS-2024-1919).
  • Security Articles and Blogs: Numerous cybersecurity firms and researchers have published analyses and advisories, such as those from CrowdStrike, Sysdig, SOC Prime, and others.
11. What is the risk assessment and urgency level?
  • Risk Assessment: The risk associated with CVE-2024-1086 is assessed as High. With a CVSS v3 score of 7.8, it represents a critical flaw leading to local privilege escalation. The vulnerability allows an attacker with existing local access to gain full root privileges, enabling complete system takeover, data theft, defense evasion, and lateral movement within a network. Compounding the risk is the confirmed active exploitation of this vulnerability in the wild, particularly by ransomware groups. The presence of a public Proof-of-Concept (PoC) exploit further increases the likelihood of successful attacks.
  • Urgency Level: The urgency level for addressing this vulnerability is Critical. Due to its high severity, ease of exploitation (low attack complexity and no user interaction required after initial access), and confirmed active exploitation in ransomware campaigns, immediate action is required. Organizations with affected Linux systems should prioritize patching without delay. CISA has included it in its Known Exploited Vulnerabilities Catalog, mandating remediation for federal agencies, which serves as a strong recommendation for all organizations to patch or mitigate promptly. Legacy systems, in particular, may be exposed as the vulnerability has existed for approximately ten years.

No IOCs found for this CVE

TitleSoftware LinkDate
Linux nf_tables 6.19.3 - Local Privilege Escalation2026-05-04
sandesh9978/cve-2024-1086-lpehttps://github.com/sandesh9978/cve-2024-1086-lpe2026-03-04
karim4353/CVE-2024-1086-Exploithttps://github.com/karim4353/CVE-2024-1086-Exploit2025-09-04
andigandhi/bitpixiehttps://github.com/andigandhi/bitpixie2024-12-29
Linux Kernel Use-After-Free Vulnerabilityhttps://www.cisa.gov/search?g=CVE-2024-10862024-05-30
Alicey0719/docker-POC_CVE-2024-1086https://github.com/Alicey0719/docker-POC_CVE-2024-10862024-04-03
Notselwyn/CVE-2024-1086https://github.com/Notselwyn/CVE-2024-10862024-03-20
SOCRadar Logo

Enhance Your CVE Management with SOCRadar Vulnerability Intelligence

Get comprehensive CVE details, real-time notifications, and proactive threat management all in one platform.

CREATE FREE ACCOUNT
CVE Details
Access comprehensive CVE information instantly
Real-time Tracking
Subscribe to CVEs and get instant updates
Exploit Analysis
Monitor related APT groups and threats
IOC Tracking
Analyze and track CVE-related IOCs
Linux Malware And Vulnerability Statistics [2026 Updated] - commandlinux.com
2026-01-06
Linux Malware And Vulnerability Statistics [2026 Updated] - commandlinux.com | News Content: Linux kernel CVE disclosures reached 5,530 in 2025, marking a 28% increase over the previous year’s total and representing an 8-9 daily average that challenges security teams worldwide. The platform now powers 49.2% of global cloud workloads and 100% of the world’s top 500 supercomputers, creating an attack surface that threat actors actively exploit through webshells, ransomware, and brute-force campaigns. This analysis examines verified data from CISA’s Known Exploited Vulnerabilities catalog, Trend Micro’s threat landscape reports, and Elastic Security Labs to document the current state of Linux
google.comrssforumnews
Data Breaches Digest - Week 45 2025
Dunkie ([email protected])2026-01-02
Data Breaches Digest - Week 45 2025 | Welcome to this week's Data Breaches Digest, a catalogue of links concerning Data Breaches and Cyber Security that were published on the Internet during the period between 3rd November and 9th November 2025. 9th November <br
dbdigest.comrssforumnews
Hardening the Backbone: Strengthening Linux Server Security with Preemptive Defense - Morphisec
2025-12-08
Hardening the Backbone: Strengthening Linux Server Security with Preemptive Defense - Morphisec | News Content: Platform Automated Moving Target Defense Learn more about our patented AMTD technology Discover Morphisec’s Ransomware-Free Guarantee Solutions USE CASES EDR + MORPHISEC BY INDUSTRY Customer Stories Customer Stories Hear our customers' stories through case studies, reviews, and videos “Morphisec prevents attacks from actually happening, it gives us an early warning sign… and that lets me make informed, intelligent decisions.” Customer Stories Company Resources Blog New threat research and expert insights every week Featured Article Morphisec’s Ransomware-Free Guarantee: Setting a New Standard for Anti-Ransomware Protection
google.comrssforumnews
Data Breaches Digest - Week 44 2025
Dunkie ([email protected])2025-12-01
Data Breaches Digest - Week 44 2025 | Welcome to this week's Data Breaches Digest, a catalogue of links concerning Data Breaches and Cyber Security that were published on the Internet during the period between 27th October and 2nd November 2025. 2nd November <br
dbdigest.comrssforumnews
CISA Warns: Linux Kernel Flaw Actively Exploited in Ransomware Attacks
Viplav Kushwah ([email protected])2025-11-10
CISA Warns: Linux Kernel Flaw Actively Exploited in Ransomware Attacks | &nbsp;A critical Linux kernel vulnerability (CVE-2024-1086) is now actively exploited in ransomware attacks, according to a recent update
blogger.comrssforumnews
CISA warns of actively exploited Linux kernel flaw. - CyberWire
2025-10-30
CISA warns of actively exploited Linux kernel flaw. - CyberWire | News Content: We did too. So we built our own. We’re security people, not sales reps. We’ve been in your shoes: buried in vendor pitches, chasing down answers, and stuck with tools that looked good in the demo but failed in production. Now we help teams focus on what matters, pick what works, and stretch every dollar further. Here’s how we do it. By the CyberWire staff Top stories. CISA warns of actively exploited Linux kernel flaw. Chinese threat actor exploits Windows LNK flaw to deploy malware. Former L3 Harris exec
google.comrssforumnews
CVE-2025-48593: Critical Zero-Click Vulnerability in Android Enables Remote Code Execution - SOC Prime
2025-11-05
CVE-2025-48593: Critical Zero-Click Vulnerability in Android Enables Remote Code Execution - SOC Prime | News Content: As the effects of CVE-2024-1086 continue to unfold, a new vulnerability has emerged, posing a menace to cyber defenders. Google has flagged a critical zero-click flaw in the Android System component responsible for managing essential device functions. CVE-2025-48593 allows attackers to execute malicious code remotely without any user interaction, potentially giving them full control over affected devices. If exploited, it could lead to data theft, ransomware deployment, or even the use of compromised smartphones as nodes in larger
google.comrssforumnews
avatar
ToxSec@0xToxSec
11 days ago
why can’t docker hold a frontier model? shared kernel. the container gets its own pids, its own mounts, its own network stack, but the kernel is one big shared party. one use-after-free in netfilter and every container on the box is poppable. CVE-2024-1086 proved it,
avatar
Lyrie.ai@lyrie_ai
2026-05-01
CVE-2024-1086: Linux kernel contains a use-after-free vulnerability in the netfilter: nftables component that allows an attacker to achieve local privilege escalation.
avatar
Manuel Martinez (Curiosidades De Hackers)@HackersCuriosos
2026-04-15
🔎 Análisis forense de una escalada de privilegios en Linux mediante explotación de kernel (CVE-2024-1086) El análisis forense en sistemas Linux permite entender no solo qué ocurrió, sino cómo y en qué orden se desarrolló un ataque. A diferencia de otros entornos, aquí la clave https://t.co/sTGjqFrAac
avatar
Grok@grok
2026-03-09
@creatine_queen @lcamtuf Containers share the host kernel, so breakouts include: - Kernel exploits (e.g. CVE-2024-1086 netfilter UAF, OverlayFS bugs, or 2025 variants) letting untrusted code gain host root. - Runtime escapes (runc/Docker: Nov 2025 CVEs via mount races or /dev/console abuse). -
avatar
xymox@clxymox
2026-02-15
📌 Universal local privilege escalation Proof-of-Concept exploit for CVE-2024-1086, working on most Linux kernels between v5.14 and v6.6, including Debian, Ubuntu, and KernelCTF. The success rate is 99.4% in KernelCTF images. 🔗 https://t.co/iWMNFhYCYp #C
avatar
Cybersecurity News Everyday@TweetThreatNews
2025-12-03
November 2025 security briefing reveals critical container escape flaws in runc (CVE-2025-3113, CVE-2025-52565, CVE-2025-52881) and a major Linux kernel vulnerability (CVE-2024-1086). Active Shai-Hulud worm targets NPM packages. #runc #ShaiHulud https://t.co/8AUpLoZBYo
avatar
Ferramentas Linux@Cezar_H_Linux
2025-11-21
🚨 Deep Dive: #Ubuntu USN-7879-1 | Linux Kernel Netfilter Vulnerabilities Just published a technical analysis of the critical CVE-2024-1086 (use-after-free) and CVE-2024-26909 patches. Read more: 👉 https://t.co/50AYeK7OE1 #Security https://t.co/5wZImGnwDI
avatar
Sysdig@sysdig
2025-11-21
🚨 CISA warns an old Linux vulnerability is still being used in active ransomware campaigns. CVE-2024-1086 persists on unpatched hosts &amp; older kernel versions—giving attackers a path to root access. 🔎 Here's how runtime behavioral analytics can spot it: https://t.co/FVrTQkA4Ut
avatar
JENI Systems@JeniSystems
2025-11-18
A live ransomware exploit targeting Linux through CVE-2024-1086 puts unpatched servers and home labs at real risk right now. https://t.co/R6bkoHYPYB #Linux #CVE20241086 #Ransomware #CyberSecurity https://t.co/epUW4YOvIl
avatar
Israel@f1tym1
2025-11-11
CVE-2025-12480 Detection: Hackers Exploit the Now-Patched Unauthenticated Access Control Vulnerability in Gladinet’s Triofox  https://t.co/fW9Oy6U93Q Following the disclosure of CVE-2024-1086, a Linux kernel privilege escalation flaw actively exploited in ransomware campaigns…
Configuration 1
TypeVendorProduct
OSLinuxlinux_kernel
Configuration 2
TypeVendorProduct
OSFedoraprojectfedora
Configuration 3
TypeVendorProduct
OSRedhatenterprise_linux_for_power_little_endian
OSRedhatenterprise_linux_desktop
OSRedhatenterprise_linux_server
OSRedhatenterprise_linux_workstation
OSRedhatenterprise_linux_for_ibm_z_systems
OSRedhatenterprise_linux_for_power_big_endian
Configuration 4
TypeVendorProduct
OSDebiandebian_linux
Configuration 5
TypeVendorProduct
OSNetappa250_firmware
Configuration 6
TypeVendorProduct
OSNetapp500f_firmware
Configuration 7
TypeVendorProduct
OSNetappc250_firmware
ReferenceLink
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/22
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/23
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/14/1
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/15/2
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/17/5
AF854A3A-2127-422B-91AE-364DA2661108https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
AF854A3A-2127-422B-91AE-364DA2661108https://github.com/Notselwyn/CVE-2024-1086
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
AF854A3A-2127-422B-91AE-364DA2661108https://pwning.tech/nftables/
AF854A3A-2127-422B-91AE-364DA2661108https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/22
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/23
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/14/1
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/15/2
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/17/5
AF854A3A-2127-422B-91AE-364DA2661108https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
AF854A3A-2127-422B-91AE-364DA2661108https://github.com/Notselwyn/CVE-2024-1086
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
AF854A3A-2127-422B-91AE-364DA2661108https://pwning.tech/nftables/
AF854A3A-2127-422B-91AE-364DA2661108https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://news.ycombinator.com/item?id=39828424
[email protected]https://pwning.tech/nftables/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://news.ycombinator.com/item?id=39828424
[email protected]https://pwning.tech/nftables/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://news.ycombinator.com/item?id=39828424
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://news.ycombinator.com/item?id=39828424
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://news.ycombinator.com/item?id=39828424
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/22
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/23
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/14/1
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/15/2
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/17/5
AF854A3A-2127-422B-91AE-364DA2661108https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
AF854A3A-2127-422B-91AE-364DA2661108https://github.com/Notselwyn/CVE-2024-1086
AF854A3A-2127-422B-91AE-364DA2661108https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
AF854A3A-2127-422B-91AE-364DA2661108https://news.ycombinator.com/item?id=39828424
AF854A3A-2127-422B-91AE-364DA2661108https://pwning.tech/nftables/
AF854A3A-2127-422B-91AE-364DA2661108https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://kernel.dance/f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://news.ycombinator.com/item?id=39828424
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
GITHUBhttps://github.com/Notselwyn/CVE-2024-1086
GITHUBhttps://news.ycombinator.com/item?id=39828424
GITHUBhttps://pwning.tech/nftables/
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/22
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/10/23
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/14/1
AF854A3A-2127-422B-91AE-364DA2661108http://www.openwall.com/lists/oss-security/2024/04/15/2
AF854A3A-2127-422B-91AE-364DA2661108https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
AF854A3A-2127-422B-91AE-364DA2661108https://github.com/Notselwyn/CVE-2024-1086
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
AF854A3A-2127-422B-91AE-364DA2661108https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
AF854A3A-2127-422B-91AE-364DA2661108https://pwning.tech/nftables/
AF854A3A-2127-422B-91AE-364DA2661108https://security.netapp.com/advisory/ntap-20240614-0009/
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/22
[email protected]http://www.openwall.com/lists/oss-security/2024/04/10/23
[email protected]http://www.openwall.com/lists/oss-security/2024/04/14/1
[email protected]http://www.openwall.com/lists/oss-security/2024/04/15/2
[email protected]http://www.openwall.com/lists/oss-security/2024/04/17/5
[email protected]https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f342de4e2f33e0e39165d8639387aa6c19dff660
[email protected]https://github.com/Notselwyn/CVE-2024-1086
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00016.html
[email protected]https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
[email protected]https://lists.fedoraproject.org/archives/list/[email protected]/message/7LSPIOMIJYTLZB6QKPQVVAYSUETUWKPF/
[email protected]https://pwning.tech/nftables/
[email protected]https://security.netapp.com/advisory/ntap-20240614-0009/
CWE IDCWE NameDescription
CWE-416Use After FreeReferencing memory after it has been freed can cause a program to crash, use unexpected values, or execute code.

CVE Radar

Real-time CVE Intelligence & Vulnerability Management Platform

CVE Radar provides comprehensive vulnerability intelligence by monitoring CVE databases, security advisories, and threat feeds. Get instant updates on new vulnerabilities, exploit details, and mitigation strategies specific to your assets.