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-31737

CVE-2026-31737: Linux Kernel Memory Leak Vulnerability

CVE-2026-31737 is a memory leak flaw in the Linux Kernel's ftgmac100 network driver affecting ring allocation cleanup. This article covers the technical details, affected kernel versions, security impact, and mitigation.

Published: May 7, 2026

CVE-2026-31737 Overview

CVE-2026-31737 is a resource management flaw in the Linux kernel's ftgmac100 Ethernet driver. The ftgmac100_alloc_rings() function allocates rx_skbs, tx_skbs, rxdes, txdes, and rx_scratch in stages. On intermediate failures, the function returned -ENOMEM directly without freeing previously allocated resources, leaking kernel memory each time the network device interface failed to open.

The vulnerability is exploitable by a local low-privileged user who can repeatedly trigger interface open failures, resulting in kernel memory exhaustion and a high-availability denial of service condition on affected systems.

Critical Impact

Repeated triggering of the flawed unwind path drains kernel memory and can render the host unresponsive, denying service to all users.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 7.0 release candidates rc1 through rc6
  • Systems using the Faraday FTGMAC100 Ethernet controller driver

Discovery Timeline

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

Technical Details for CVE-2026-31737

Vulnerability Analysis

The defect resides in drivers/net/ethernet/faraday/ftgmac100.c within the ftgmac100_alloc_rings() function. The function performs a sequence of allocations to set up the driver's transmit and receive rings. Each allocation step depends on the success of the prior step.

When any allocation past the first succeeded but a later allocation failed, the function returned -ENOMEM directly without releasing the buffers it had already obtained. This leaks rx_skbs, tx_skbs, rxdes, txdes, or rx_scratch depending on which stage failed.

The upstream patch reworks the failure path with staged local unwind labels. Each label frees the resources allocated up to its point in the sequence, in reverse order, before returning the error. This pattern matches standard netdev allocation cleanup conventions.

Root Cause

The root cause is improper error-path cleanup [CWE-noinfo]. The original code conflated separate allocation stages into a single error return, omitting the staged cleanup required for partial-success scenarios. Each open() call that fails mid-allocation permanently consumes kernel memory until reboot.

Attack Vector

Exploitation requires local access with privileges sufficient to bring a network interface up, such as CAP_NET_ADMIN within a namespace or membership in groups permitted to manage networking. An attacker repeatedly issues ip link set <iface> up against an ftgmac100 interface under conditions that cause intermediate allocations to fail, such as memory pressure or fault injection. Each failed attempt leaks ring resources, gradually exhausting kernel memory and degrading availability.

No verified public exploit code is available for this issue. The vulnerability is described in upstream commits referenced in the kernel.org stable tree.

Detection Methods for CVE-2026-31737

Indicators of Compromise

  • Repeated ENOMEM returns from ftgmac100_open() in dmesg or journalctl -k output
  • Steadily growing Slab and SUnreclaim values in /proc/meminfo correlated with interface open attempts
  • Frequent ip link set ... up failures from non-root users on hosts with FTGMAC100 hardware

Detection Strategies

  • Monitor kernel ring buffer logs for repeated allocation failure messages originating from the ftgmac100 driver.
  • Track per-process syscall patterns invoking SIOCSIFFLAGS or netlink RTM_NEWLINK against FTGMAC100 interfaces.
  • Baseline kmalloc and slab consumption on systems using Faraday network controllers and alert on sustained upward trends.

Monitoring Recommendations

  • Enable kernel auditd rules for network configuration changes and correlate with memory pressure events.
  • Forward /var/log/kern.log and slab statistics to a centralized log platform for trend analysis.
  • Set thresholds on unreclaimable slab growth rates to flag potential kernel memory exhaustion early.

How to Mitigate CVE-2026-31737

Immediate Actions Required

  • Apply the upstream stable kernel patches referenced by commits 184b3a5, 78da433, 82f8611, 8351d18, 8a71911, a7e1bf3, c0fd0fe, and d452300.
  • Restrict the CAP_NET_ADMIN capability and netlink interface configuration rights to trusted administrators only.
  • Reboot affected hosts after patching to clear any leaked kernel memory accumulated prior to the fix.

Patch Information

The fix is committed across multiple stable branches of the Linux kernel. Refer to the upstream commits for branch-specific backports: Kernel Commit 184b3a5, Kernel Commit 78da433, Kernel Commit 82f8611, Kernel Commit 8351d18, Kernel Commit 8a71911, Kernel Commit a7e1bf3, Kernel Commit c0fd0fe, and Kernel Commit d452300. Distribution-provided kernels should be updated through the vendor's package manager once backports are released.

Workarounds

  • Where patching is not immediately possible, blacklist the ftgmac100 module on hosts that do not require Faraday Ethernet support using /etc/modprobe.d/.
  • Limit unprivileged user namespaces by setting kernel.unprivileged_userns_clone=0 to reduce the local attack surface for CAP_NET_ADMIN abuse.
  • Constrain interface management to administrators by tightening Polkit and sudoers rules covering ip, ifconfig, and netlink helpers.
bash
# Example: blacklist ftgmac100 where the driver is not required
echo 'blacklist ftgmac100' | sudo tee /etc/modprobe.d/blacklist-ftgmac100.conf
sudo depmod -a

# Restrict unprivileged user namespace creation
echo 'kernel.unprivileged_userns_clone=0' | sudo tee /etc/sysctl.d/99-userns.conf
sudo sysctl --system

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.03%

  • 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
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Commit Update 184b3a5

  • Kernel Commit Update 78da433

  • Kernel Commit Update 82f8611

  • Kernel Commit Update 8351d18

  • Kernel Commit Update 8a71911

  • Kernel Commit Update a7e1bf3

  • Kernel Commit Update c0fd0fe

  • Kernel Commit Update d452300
  • Related CVEs
  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability

  • 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
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