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

CVE-2026-31774: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-31774 is a buffer overflow vulnerability in the Linux kernel's io_uring subsystem that causes slab-out-of-bounds reads. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-31774 Overview

CVE-2026-31774 is a slab-out-of-bounds read vulnerability in the Linux kernel's io_uring/net subsystem. The flaw resides in io_bundle_nbufs() and stems from an integer truncation issue where sqe->len (a __u32) is stored into sr->len (an int). When userspace supplies a value greater than INT_MAX, sr->len overflows to a negative number and propagates through the bundle receive path, eventually producing an infinite loop that reads past an allocated iov[] array in the kmalloc-64 slab.

The vulnerability is tracked under [CWE-125] Out-of-Bounds Read and affects Linux kernel 7.0 release candidates.

Critical Impact

Local unprivileged users can trigger a slab-out-of-bounds read in kernel memory, leading to information disclosure or kernel panic and denial of service.

Affected Products

  • Linux Kernel 7.0-rc1 through 7.0-rc6
  • Linux Kernel builds with io_uring and bundle recv/send support enabled
  • Distributions shipping pre-release 7.0 kernels

Discovery Timeline

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

Technical Details for CVE-2026-31774

Vulnerability Analysis

The vulnerability exists in the io_uring networking bundle path. The io_uring submission queue entry (sqe) defines len as an unsigned 32-bit integer, but the networking request structure sr stores it as a signed int. This type mismatch enables an integer overflow when userspace passes values exceeding INT_MAX, such as 0xFFFFFFFF.

Once sr->len becomes negative, it is assigned to sel.val in io_recv() as a ssize_t of -1. That value is then cast to size_t in io_recv_buf_select(), producing arg.max_len = 0xFFFFFFFFFFFFFFFF. With an effectively unbounded max_len, io_ring_buffers_peek() skips clamping and writes oversized values into iov[].iov_len.

The corrupted iovec entries flow into io_bundle_nbufs(), where min_t(int, 0xFFFFFFFF, ret) evaluates to -1. The loop counter then increments rather than decrements, advancing past the allocated iovec array in the kmalloc-64 slab. KASAN reports the resulting out-of-bounds read at io_bundle_nbufs+0x128/0x160.

Root Cause

The root cause is missing input validation. sqe->len is treated as a signed integer downstream without verifying that the supplied value fits within the positive int range. Any value greater than INT_MAX is silently reinterpreted as negative, breaking length-clamping logic across the bundle receive and send paths.

Attack Vector

A local user with permission to issue io_uring operations can craft a submission queue entry with len set to a value above INT_MAX (for example, 0xFFFFFFFF) and submit a bundle recv or send request. No additional privileges are required beyond the ability to use io_uring, and no user interaction is needed.

The vulnerability is described in prose because no public proof-of-concept code is available. See the upstream patch commits for the exact code paths and fix details.

Detection Methods for CVE-2026-31774

Indicators of Compromise

  • KASAN reports referencing slab-out-of-bounds in io_bundle_nbufs in kernel logs or dmesg output
  • Unexpected kernel panics or oops traces with io_recv or io_recv_finish in the call stack
  • Processes issuing io_uringIORING_OP_RECV or IORING_OP_SEND operations with len values above 0x7FFFFFFF

Detection Strategies

  • Enable KASAN on test and pre-production kernels to catch out-of-bounds reads in the io_uring/net path
  • Audit io_uring usage with eBPF or perf probes on io_recv, io_recv_finish, and io_bundle_nbufs to flag oversized len values
  • Monitor kernel logs for repeated io_uring-related KASAN or BUG entries, which can indicate exploitation attempts

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a centralized logging platform and alert on KASAN, BUG:, or io_bundle_nbufs strings
  • Track which workloads use io_uring networking opcodes, especially in multi-tenant or container hosts
  • Review host stability metrics for new kernel panics correlated with io_uring-heavy applications

How to Mitigate CVE-2026-31774

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the vendor advisories and reboot affected hosts
  • Inventory hosts running Linux 7.0 release candidates and prioritize patching multi-tenant and untrusted-workload systems
  • Restrict io_uring access on systems where it is not required, using the kernel.io_uring_disabled sysctl on supported kernels

Patch Information

The issue is fixed by rejecting negative sr->len values early in io_sendmsg_prep() and io_recvmsg_prep(). Since sqe->len is a __u32, any value greater than INT_MAX is treated as invalid. The fix is available in the following commits: Kernel Patch Commit 1b655cd3, Kernel Patch Commit 90ced24c, Kernel Patch Commit b948f9d5, and Kernel Patch Commit c314b405.

Workarounds

  • Disable io_uring system-wide where feasible by setting kernel.io_uring_disabled=2 to prevent unprivileged use
  • Use seccomp profiles to block the io_uring_setup, io_uring_enter, and io_uring_register syscalls for untrusted workloads
  • Limit container and sandbox access to io_uring through Kubernetes seccomp defaults or Docker policy until kernels are patched
bash
# Disable io_uring for all users until patched
sysctl -w kernel.io_uring_disabled=2
echo 'kernel.io_uring_disabled=2' >> /etc/sysctl.d/99-io-uring.conf

# Verify the setting is applied
sysctl kernel.io_uring_disabled

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

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

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

  • Kernel Patch Commit 90ced24c

  • Kernel Patch Commit b948f9d5

  • Kernel Patch Commit c314b405
  • Related CVEs
  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-31776: 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