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-2026-31744

CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability

CVE-2026-31744 is a NULL pointer dereference vulnerability in the Linux Kernel's energy model subsystem that occurs when an invalid perf domain ID is supplied. This article covers technical details, affected versions, and fixes.

Published: May 7, 2026

CVE-2026-31744 Overview

CVE-2026-31744 is a NULL pointer dereference vulnerability in the Linux kernel's Power Management Energy Model (PM/EM) subsystem. The flaw resides in the dev_energymodel_nl_get_perf_domains_doit() netlink handler. This function calls em_perf_domain_get_by_id() and forwards its return value to __em_nl_get_pd_size() without verifying the pointer is valid. When a caller supplies a non-existent performance domain ID, em_perf_domain_get_by_id() returns NULL, and the subsequent dereference of pd->cpus triggers a kernel crash. The vulnerability affects Linux kernel versions 6.19-rc6 through 7.0-rc7 and is tracked under [CWE-476].

Critical Impact

A local, low-privileged user can crash the kernel by sending a crafted netlink request with an invalid performance domain ID, resulting in denial of service.

Affected Products

  • Linux Kernel 6.19-rc6, rc7, rc8
  • Linux Kernel 7.0-rc1 through 7.0-rc7
  • Distributions shipping the affected mainline release candidates

Discovery Timeline

  • 2026-05-01 - CVE-2026-31744 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-31744

Vulnerability Analysis

The vulnerability resides in the Energy Model netlink interface used by user space to query performance domain metadata. The dev_energymodel_nl_get_perf_domains_doit() handler resolves a user-supplied performance domain identifier through em_perf_domain_get_by_id(). This lookup function returns NULL when the requested ID does not match any registered performance domain.

The handler does not validate the return value before invoking __em_nl_get_pd_size(). Inside that helper, the code dereferences pd->cpus at structure offset 0x30, which causes a NULL pointer dereference and a kernel oops. The sister handler dev_energymodel_nl_get_perf_table_doit() already implements the correct pattern by routing through __em_nl_get_pd_table_id(), which returns NULL and triggers an -EINVAL response to the caller.

Root Cause

The root cause is a missing NULL check on the return value of em_perf_domain_get_by_id() in the get-perf-domains netlink do handler. The function contract permits NULL returns, but the caller treats the result as always valid. This is a classic [CWE-476] NULL Pointer Dereference defect introduced when the netlink interface for the Energy Model was added.

Attack Vector

Exploitation requires local access with permission to send netlink messages to the kernel's Energy Model generic netlink family. An unprivileged attacker constructs a netlink request to the get-perf-domains command and supplies an integer performance domain ID that does not correspond to any registered domain. The kernel handler proceeds to dereference the NULL pointer, producing a kernel oops. The result is a system-wide denial of service. The vulnerability does not expose memory contents or allow code execution, but it disrupts availability for all users on the affected host.

The upstream fix adds a NULL check after em_perf_domain_get_by_id() and returns -EINVAL when no matching domain exists, mirroring the behavior of the perf-table sister handler.

Detection Methods for CVE-2026-31744

Indicators of Compromise

  • Kernel oops messages referencing __em_nl_get_pd_size or dev_energymodel_nl_get_perf_domains_doit in dmesg or /var/log/kern.log
  • Unexpected kernel panics on hosts running affected 6.19-rc or 7.0-rc kernels
  • Repeated netlink traffic from non-privileged user-space processes targeting the Energy Model generic netlink family

Detection Strategies

  • Monitor kernel ring buffer output for NULL pointer dereference traces that include the Energy Model call path
  • Audit running kernel versions across the fleet using uname -r and flag hosts in the 6.19-rc6 through 7.0-rc7 range
  • Correlate process-level netlink socket activity with subsequent kernel crash events

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on oops or panic signatures naming the EM subsystem
  • Track host availability and unplanned reboots on systems running release-candidate kernels
  • Restrict and log local user access to systems running pre-release kernels until patched

How to Mitigate CVE-2026-31744

Immediate Actions Required

  • Identify all hosts running Linux kernel 6.19-rc6 through 7.0-rc7 and prioritize patching
  • Apply the upstream stable commits 9badc2a84e688be1275bb740942d5f6f51746908 and ab09b9a1e3b02ff62c5aebe3b12b0cb4cb4ea8ab
  • Avoid deploying release-candidate kernels in production environments where local DoS is a meaningful risk

Patch Information

The fix adds a NULL check on the return value of em_perf_domain_get_by_id() inside dev_energymodel_nl_get_perf_domains_doit() and returns -EINVAL when the performance domain ID is not found. The patch is available in the upstream stable tree. See the Kernel Git Commit and the follow-up Kernel Git Commit for the source-level changes.

Workarounds

  • Downgrade affected systems to a stable Linux kernel release that does not include the vulnerable Energy Model netlink handler
  • Restrict local shell and code execution access on affected hosts to trusted administrators only
  • Use Linux Security Modules or seccomp policies to limit which processes can open AF_NETLINK sockets to the generic netlink family
bash
# Verify running kernel version
uname -r

# Apply distribution kernel updates (Debian/Ubuntu)
sudo apt update && sudo apt install --only-upgrade linux-image-$(uname -r)

# Apply distribution kernel updates (RHEL/Fedora)
sudo dnf update kernel

# Reboot to load the patched kernel
sudo systemctl reboot

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31746: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31752: Linux Kernel ND Option Vulnerability

  • CVE-2026-31738: Linux Kernel VXLAN Option Validation Flaw

  • CVE-2026-31737: Linux Kernel Memory Leak 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