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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-35845

CVE-2024-35845: Linux Kernel iwlwifi NUL Termination Flaw

CVE-2024-35845 is a string termination flaw in the Linux Kernel's iwlwifi driver that could lead to improper string handling. This article covers the technical details, affected kernel versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2024-35845 Overview

CVE-2024-35845 is a critical vulnerability in the Linux kernel's Intel Wireless WiFi (iwlwifi) driver affecting the debug TLV (Type-Length-Value) handling functionality. The vulnerability exists in the iwl_fw_ini_debug_info_tlv structure which is used as a string but lacks proper NUL termination validation before use. This missing string termination check can lead to out-of-bounds memory access when the driver processes malformed firmware debug information.

Critical Impact

This vulnerability allows potential information disclosure and system crashes through network-accessible attack vectors, with no privileges or user interaction required for exploitation.

Affected Products

  • Linux Kernel (multiple versions)
  • Debian Linux 10.0
  • Systems with Intel Wireless WiFi adapters using the iwlwifi driver

Discovery Timeline

  • 2024-05-17 - CVE-2024-35845 published to NVD
  • 2025-04-07 - Last updated in NVD database

Technical Details for CVE-2024-35845

Vulnerability Analysis

The vulnerability resides in the iwlwifi driver's debug TLV parsing code. The iwl_fw_ini_debug_info_tlv structure contains string data that is processed by the kernel without first verifying proper NUL termination. When firmware debug information is parsed, the driver treats this structure's contents as a C-style string, expecting it to end with a NUL character (\0). Without this termination check, memory reads can continue past the intended buffer boundary.

This is classified under CWE-134 (Use of Externally-Controlled Format String), as the string handling can be influenced by external input through the firmware interface. The network attack vector enables remote triggering without requiring local system access, authentication, or user interaction.

Root Cause

The root cause is the absence of explicit NUL termination validation in the iwlwifi debug TLV processing path. When the driver receives debug information through the iwl_fw_ini_debug_info_tlv structure, it directly uses the contained data as a string in subsequent operations. The fix ensures the string buffer is properly NUL-terminated before any string operations are performed on it.

Attack Vector

The vulnerability can be exploited through network-based attacks targeting the WiFi subsystem. An attacker could potentially craft malicious firmware debug data or manipulate wireless frames that trigger the vulnerable code path. The exploitation does not require authentication or user interaction, making it particularly dangerous in environments where affected systems are exposed to untrusted wireless networks.

The iwlwifi driver processes this debug information during normal operation, meaning any system with an Intel wireless adapter using the vulnerable driver versions could be affected. Successful exploitation could result in information disclosure from kernel memory or denial of service through system crashes.

Detection Methods for CVE-2024-35845

Indicators of Compromise

  • Kernel panic or oops messages referencing the iwlwifi driver or iwl_fw_ini_debug_info_tlv
  • Unexpected system crashes when WiFi is active or during wireless connection establishment
  • Memory corruption warnings in kernel logs related to the wireless subsystem
  • Unusual behavior of the iwlwifi driver module including repeated restarts

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for iwlwifi-related errors or memory access violations
  • Deploy kernel live patching solutions to detect vulnerable kernel versions in production environments
  • Use SentinelOne Singularity platform to monitor for kernel-level anomalies and exploit attempts
  • Implement network intrusion detection rules for anomalous 802.11 traffic patterns

Monitoring Recommendations

  • Enable kernel crash dump collection to capture forensic evidence of exploitation attempts
  • Monitor wireless interface statistics for unusual error counts or resets
  • Configure alerts for unexpected iwlwifi module reloads or failures
  • Track kernel version inventories across the organization to identify vulnerable systems

How to Mitigate CVE-2024-35845

Immediate Actions Required

  • Update to a patched Linux kernel version that addresses CVE-2024-35845
  • If immediate patching is not possible, consider temporarily disabling WiFi on critical systems
  • Review and apply vendor-specific patches from Debian and other distribution maintainers
  • Prioritize patching for systems in environments with untrusted wireless networks

Patch Information

Multiple patches have been released to address this vulnerability. The fix ensures NUL termination is enforced before the iwl_fw_ini_debug_info_tlv string is used. Apply the appropriate patch for your kernel version:

  • Kernel Patch Commit 71d4186
  • Kernel Patch Commit 783d413
  • Kernel Patch Commit 96aa407
  • Kernel Patch Commit c855a1a
  • Kernel Patch Commit ea1d166
  • Kernel Patch Commit fabe2db
  • Kernel Patch Commit fec14d1

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

Workarounds

  • Disable the iwlwifi driver by blacklisting the module if WiFi functionality is not required: add blacklist iwlwifi to /etc/modprobe.d/blacklist.conf
  • Use wired Ethernet connections on critical systems until patches can be applied
  • Implement network segmentation to limit exposure of vulnerable systems to untrusted wireless networks
  • Consider using alternative WiFi drivers if available for your hardware
bash
# Blacklist iwlwifi module as temporary workaround
echo "blacklist iwlwifi" | sudo tee /etc/modprobe.d/blacklist-iwlwifi.conf
sudo update-initramfs -u
sudo reboot

# Verify module is not loaded after reboot
lsmod | grep iwlwifi

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.27%

  • 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-134
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Patch Commit 71d4186

  • Kernel Patch Commit 783d413

  • Kernel Patch Commit 96aa407

  • Kernel Patch Commit c855a1a

  • Kernel Patch Commit ea1d166

  • Kernel Patch Commit fabe2db

  • Kernel Patch Commit fec14d1
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

  • CVE-2026-23431: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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