The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2024-47685

CVE-2024-47685: Debian Linux Buffer Overflow Vulnerability

CVE-2024-47685 is a buffer overflow flaw in Debian Linux kernel's netfilter component that causes uninitialized data exposure in IPv6 TCP headers. This article covers the technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2024-47685 Overview

CVE-2024-47685 is an uninitialized memory use vulnerability in the Linux kernel's netfilter subsystem, specifically affecting the nf_reject_ip6_tcphdr_put() function in the IPv6 reject module. The vulnerability was discovered through syzbot fuzzing, which identified that the function was potentially sending uninitialized data (garbage values) in the four reserved TCP header bits (th->res1) when constructing TCP RST packets for IPv6 connection rejection.

The flaw occurs because the TCP header memory was not being properly zeroed before use, unlike its IPv4 counterpart nf_reject_ip_tcphdr_put() which correctly uses skb_put_zero() to clear the entire TCP header structure. This inconsistency allows kernel memory contents to leak through outbound network packets.

Critical Impact

This vulnerability enables network-based information disclosure of uninitialized kernel memory contents and can cause denial of service conditions in affected Linux systems using IPv6 netfilter reject rules.

Affected Products

  • Linux Kernel (multiple versions with netfilter IPv6 reject functionality)
  • Debian Linux 11.0

Discovery Timeline

  • October 21, 2024 - CVE-2024-47685 published to NVD
  • November 18, 2025 - Last updated in NVD database

Technical Details for CVE-2024-47685

Vulnerability Analysis

This vulnerability stems from improper initialization of memory used for TCP header construction in the kernel's netfilter IPv6 rejection code path. When the kernel generates a TCP RST (reset) packet to reject an IPv6 connection through netfilter rules, the nf_reject_ip6_tcphdr_put() function allocates space for the TCP header but fails to zero-initialize it completely.

The consequence is that uninitialized kernel memory—potentially containing sensitive data from previous operations—can be transmitted in the reserved bits of outgoing TCP RST packets. While the reserved bits (res1) are typically ignored by receiving TCP implementations, their contents traverse the network and could be captured by attackers for information gathering purposes.

The vulnerability is exploitable remotely without authentication through network traffic that triggers IPv6 netfilter reject rules. An attacker can craft packets designed to be rejected by the target system's firewall, causing the generation of RST packets containing leaked memory contents.

Root Cause

The root cause is a missing memory initialization call in nf_reject_ip6_tcphdr_put() located in net/ipv6/netfilter/nf_reject_ipv6.c. The function uses skb_put() to allocate TCP header space without clearing it, while the equivalent IPv4 function nf_reject_ip_tcphdr_put() properly uses skb_put_zero() to ensure the header is zero-initialized.

This inconsistency between IPv4 and IPv6 code paths represents a common pattern of vulnerabilities where parallel implementations diverge in security-critical details. The KMSAN (Kernel Memory Sanitizer) tool flagged this as an uninitialized value at offset +0x688 within the function.

Attack Vector

The vulnerability can be exploited through the following attack flow:

  1. An attacker sends specially crafted IPv6 packets to a target system
  2. The target's netfilter rules trigger packet rejection via nft_reject_inet_eval()
  3. The kernel calls nf_send_reset6() to generate a TCP RST response
  4. nf_reject_ip6_tcphdr_put() constructs the TCP header with uninitialized memory in the reserved bits
  5. The RST packet containing leaked memory is transmitted back to the attacker
  6. The attacker captures and analyzes the response packets to extract kernel memory contents

The attack requires the target to have IPv6 enabled with netfilter reject rules configured. The leaked memory fragments can potentially reveal kernel addresses useful for KASLR bypass or other sensitive information.

Detection Methods for CVE-2024-47685

Indicators of Compromise

  • Unusual patterns of TCP RST packets being generated from IPv6 netfilter rules
  • Network traffic containing TCP packets with non-zero reserved bits (res1)
  • KMSAN kernel warnings indicating uninitialized memory use in netfilter paths
  • Increased volume of rejected IPv6 connections triggering RST generation

Detection Strategies

  • Enable KMSAN or KASAN in development/test kernels to detect uninitialized memory access patterns
  • Monitor netfilter logging for unusual reject rule triggering patterns that may indicate exploitation attempts
  • Deploy network intrusion detection systems with rules to flag TCP packets containing non-zero reserved bits
  • Implement kernel tracing on nf_reject_ip6_tcphdr_put() and nf_send_reset6() functions in suspected compromise scenarios

Monitoring Recommendations

  • Configure syslog monitoring for kernel warnings related to netfilter and uninitialized memory
  • Establish baseline metrics for IPv6 TCP RST packet generation rates to identify anomalous activity
  • Review firewall logs for patterns of traffic specifically designed to trigger reject rules
  • Enable packet capture on network egress points during incident response to analyze RST packet contents

How to Mitigate CVE-2024-47685

Immediate Actions Required

  • Update affected Linux kernel installations to patched versions immediately
  • Review and audit IPv6 netfilter reject rules to understand exposure scope
  • Consider temporarily disabling IPv6 reject rules in favor of DROP rules which do not generate response packets
  • Monitor systems for signs of exploitation while patches are being deployed

Patch Information

The fix replaces the skb_put() call with skb_put_zero() in nf_reject_ip6_tcphdr_put() to ensure the entire TCP header is zero-initialized before use, matching the behavior of the IPv4 implementation.

Multiple kernel patches have been released across various stable branches:

  • Linux Kernel Commit Summary
  • Linux Kernel Commit Security Patch
  • Linux Kernel Commit Bug Fix

Debian users should refer to the Debian LTS Announcement for distribution-specific update guidance.

Workarounds

  • Replace netfilter REJECT rules with DROP rules for IPv6 traffic to prevent RST packet generation
  • Disable IPv6 if not required in the environment until patches can be applied
  • Implement network-level filtering to block potentially malicious IPv6 traffic at perimeter devices
  • Use firewall rate limiting on reject rules to reduce potential information leakage volume
bash
# Configuration example: Replace REJECT with DROP for IPv6 netfilter rules
# Before (vulnerable):
# ip6tables -A INPUT -p tcp --dport 22 -j REJECT --reject-with tcp-reset

# After (mitigated):
ip6tables -A INPUT -p tcp --dport 22 -j DROP

# To list current IPv6 reject rules that should be reviewed:
ip6tables -L -n -v | grep REJECT

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-908
  • Technical References
  • Debian LTS Announcement

  • Debian LTS Advisory Update
  • Vendor Resources
  • Linux Kernel Commit Summary

  • Linux Kernel Commit Changes

  • Linux Kernel Commit Enhancements

  • Linux Kernel Commit Update

  • Linux Kernel Commit Fixes

  • Linux Kernel Commit Security Patch

  • Linux Kernel Commit Bug Fix

  • Linux Kernel Commit Improvement

  • Linux Kernel Commit Maintenance
  • Related CVEs
  • CVE-2026-23448: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-23447: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31395: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31402: Linux Kernel Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English