A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-0565

CVE-2024-0565: Linux Kernel SMB Client DOS Vulnerability

CVE-2024-0565 is a denial of service flaw in the Linux Kernel's SMB Client caused by an out-of-bounds memory read. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2024-0565 Overview

An out-of-bounds memory read vulnerability has been identified in the Linux Kernel's SMB Client sub-component. The flaw exists in the receive_encrypted_standard function located in fs/smb/client/smb2ops.c. This vulnerability occurs due to an integer underflow condition affecting the memcpy length calculation, which can lead to out-of-bounds memory access and ultimately result in a denial of service condition.

Critical Impact

This integer underflow vulnerability in the Linux Kernel SMB Client can be exploited by an attacker on an adjacent network to cause out-of-bounds memory reads, leading to system crashes and denial of service. Systems using SMB encrypted connections are particularly at risk.

Affected Products

  • Linux Kernel (versions prior to the fix, including 6.7 release candidates rc1-rc5)
  • NetApp ONTAP Tools for VMware vSphere

Discovery Timeline

  • January 15, 2024 - CVE-2024-0565 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2024-0565

Vulnerability Analysis

This vulnerability represents a classic integer underflow condition (CWE-191) in the Linux Kernel's SMB client implementation. The flaw manifests during the processing of encrypted SMB network traffic when the receive_encrypted_standard function calculates buffer lengths for memory copy operations.

When processing encrypted SMB responses, the function performs arithmetic operations on length values without adequate bounds checking. Under specific conditions, these calculations can result in an integer underflow, where a subtraction operation produces a negative value that wraps around to an unexpectedly large positive number when interpreted as an unsigned integer. This corrupted length value is then passed to memcpy, causing the function to read memory far beyond the intended buffer boundaries.

The attack requires the adversary to be positioned on an adjacent network and have low-level privileges, with some user interaction required for exploitation. When successfully triggered, the vulnerability can cause the kernel to access invalid memory regions, potentially exposing sensitive kernel memory contents or causing a kernel panic that crashes the entire system.

Root Cause

The root cause of this vulnerability lies in insufficient validation of arithmetic operations in the receive_encrypted_standard function within fs/smb/client/smb2ops.c. When processing encrypted SMB protocol data, the code performs subtraction operations on length values without verifying that the result remains within valid bounds. This allows specially crafted network packets to trigger an integer underflow condition, where the computed memcpy length becomes an extremely large value instead of the expected small positive integer.

Attack Vector

The vulnerability requires an attacker to be positioned on an adjacent network segment to the target system. The attack involves sending maliciously crafted encrypted SMB protocol messages that manipulate the length fields in a way that triggers the integer underflow condition. When the vulnerable kernel code processes these packets, the corrupted length value causes memcpy to read beyond the allocated buffer, potentially causing memory corruption or a kernel panic.

The attack scenario involves a system with an active SMB client connection using encryption. An attacker on the same network segment can inject or manipulate SMB encrypted responses to exploit the integer underflow in the length calculation, resulting in denial of service through kernel crash.

Detection Methods for CVE-2024-0565

Indicators of Compromise

  • Unexpected kernel panics or system crashes on systems with active SMB connections
  • Kernel log entries indicating memory access violations in the SMB client subsystem
  • Crash dumps showing faults in receive_encrypted_standard or related SMB client functions
  • Unusual network traffic patterns on SMB ports (445/TCP) from unexpected sources on the local network

Detection Strategies

  • Monitor kernel logs for oops messages or panic traces involving fs/smb/client/smb2ops.c or receive_encrypted_standard
  • Deploy network intrusion detection rules to identify anomalous SMB encrypted traffic patterns on local network segments
  • Use kernel crash dump analysis tools to identify crashes related to SMB client memory operations
  • Implement host-based monitoring to detect repeated SMB connection failures followed by system instability

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture detailed information about any kernel panics for forensic analysis
  • Configure alerting on repeated SMB client errors or connection resets in system logs
  • Monitor for unusual memory consumption or access patterns in kernel SMB client modules
  • Implement network segmentation monitoring to detect unauthorized adjacent network access attempts

How to Mitigate CVE-2024-0565

Immediate Actions Required

  • Update Linux Kernel to patched versions as provided by your distribution vendor
  • Review and apply relevant security advisories from Red Hat, Debian, and NetApp
  • Temporarily disable SMB encryption if not required and system cannot be immediately patched
  • Implement network segmentation to limit adjacent network attack surface

Patch Information

Multiple Linux distribution vendors have released patches addressing this vulnerability. Administrators should consult the following security advisories for patch information specific to their environment:

  • Red Hat Security Advisory RHSA-2024:1188
  • Red Hat Security Advisory RHSA-2024:1404
  • Red Hat Security Advisory RHSA-2024:1532
  • Red Hat Security Advisory RHSA-2024:2394
  • Debian LTS Announcement June 2024
  • NetApp Security Advisory NTAP-20240223-0002

For additional technical details, refer to Red Hat Bugzilla Report #2258518 and the Stable Commits Message #328851.

Workarounds

  • Restrict SMB client usage to trusted network segments with strict access controls
  • Disable SMB encryption temporarily if the business impact is acceptable and patching is not immediately possible
  • Implement network-level filtering to limit which systems can communicate via SMB protocols
  • Consider using alternative file sharing protocols where SMB encryption is not critical
bash
# Check current kernel version for patch status
uname -r

# Verify SMB client module status
lsmod | grep cifs

# Review active SMB mounts that may use encryption
mount | grep cifs

# Check for available kernel updates (RHEL/CentOS)
yum check-update kernel

# Check for available kernel updates (Debian/Ubuntu)
apt list --upgradable | grep linux-image

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-191
  • Technical References
  • Red Hat Security Advisory RHSA-2024:1188

  • Red Hat Security Advisory RHSA-2024:1404

  • Red Hat Security Advisory RHSA-2024:1532

  • Red Hat Security Advisory RHSA-2024:1533

  • Red Hat Security Advisory RHSA-2024:1607

  • Red Hat Security Advisory RHSA-2024:1614

  • Red Hat Security Advisory RHSA-2024:2093

  • Red Hat Security Advisory RHSA-2024:2394

  • Red Hat CVE-2024-0565 Information

  • Debian LTS Announcement June 2024

  • NetApp Security Advisory NTAP-20240223-0002
  • Vendor Resources
  • Red Hat Bugzilla Report #2258518

  • Stable Commits Message #328851
  • Related CVEs
  • CVE-2026-46220: Linux Kernel AMDGPU SDMA4 DoS Vulnerability

  • CVE-2026-46214: Linux Kernel vsock/virtio DoS Vulnerability

  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-46193: Linux Kernel AH ESN DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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