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

CVE-2026-31602: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-31602 is a buffer overflow vulnerability in the Linux Kernel's ALSA ctxfi driver that causes page faults on AMD64 systems. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: May 14, 2026

CVE-2026-31602 Overview

CVE-2026-31602 is a Linux kernel vulnerability in the ALSA snd_ctxfi sound driver for Creative CT20K2 audio hardware. The flaw resides in the ct_vm_map() function, which performs virtual memory mapping for playback streams. A prior change increased CT_PTP_NUM from 1 to 4 to support 256 playback streams, but the driver continues to use only vm->ptp[0].area for page table entries (PTEs). When aggregate playback memory allocations exceed the single-page PTE capacity, the driver accesses memory beyond the allocated region and triggers a page fault in kernel space.

Critical Impact

Local users with access to ALSA playback devices on systems using the snd_ctxfi driver can trigger a kernel page fault leading to denial of service via ct_vm_map+0x17c/0x280.

Affected Products

  • Linux Kernel versions containing commit 391e69143d0a (which raised CT_PTP_NUM to 4)
  • Systems with Creative Technology CT20K2-based audio hardware using the snd_ctxfi driver
  • AMD64 platforms where a single PTP covers 512 PTEs (2M of mapped audio buffer)

Discovery Timeline

  • 2026-04-24 - CVE-2026-31602 published to NVD
  • 2026-04-29 - Last updated in NVD database

Technical Details for CVE-2026-31602

Vulnerability Analysis

The vulnerability is an out-of-bounds write in the ALSA ctxfi driver triggered through normal PCM playback preparation. The driver's virtual memory manager allocates four page table pages (CT_PTP_NUM = 4) when initialized, but ct_vm_map() indexes only into vm->ptp[0].area when populating PTEs. On AMD64 systems each PTP backs 512 PTEs, corresponding to 2 MB of mapped audio buffer space. When the total of active playback allocations exceeds this 2 MB window, the function writes past the end of the single allocated page.

The resulting page fault surfaces during snd_pcm_ioctl → snd_pcm_do_prepare → ct_pcm_playback_prepare → atc_pcm_playback_prepare → ct_vm_map, taking the kernel offline with an Oops at RIP: ct_vm_map+0x17c/0x280 [snd_ctxfi]. Any local user with permission to open /dev/snd/pcm* playback nodes can reach this code path.

Root Cause

The root cause is an inconsistency between memory allocation and memory access. Commit 391e69143d0a expanded the PTP pool to four pages to advertise 256 playback streams, but the CT20K2 hardware exposes multiple VMEM_PTPAL registers that the driver does not separately program. The mapping logic in ct_vm_map() was never refactored to spread PTE writes across vm->ptp[1..3], so it continues to treat the PTP as a single contiguous page. The fix reverts CT_PTP_NUM to 1 while keeping SRC_RESOURCE_NUM and playback_count at 256.

Attack Vector

Exploitation is local and requires permission to open ALSA PCM playback devices, typically granted to members of the audio group or via session policy on desktop systems. An attacker opens enough playback substreams or allocates large enough DMA buffers to push aggregate mapped memory beyond 2 MB, then issues a SNDRV_PCM_IOCTL_PREPARE to trigger ct_vm_map(). The kernel write past the PTP boundary corrupts adjacent memory and produces a fatal Oops, achieving denial of service. The vulnerability does not require network access or user interaction beyond the local ioctl sequence.

No public proof-of-concept exploit code is available. The vulnerability mechanism is documented in the upstream kernel commit logs referenced below.

Detection Methods for CVE-2026-31602

Indicators of Compromise

  • Kernel Oops messages referencing ct_vm_map+0x17c/0x280 [snd_ctxfi] in dmesg or /var/log/kern.log
  • BUG: unable to handle page fault entries with call traces including atc_pcm_playback_prepare and ct_pcm_playback_prepare
  • Unexpected audio subsystem crashes on hosts with Creative CT20K2 (Sound Blaster X-Fi Titanium series) hardware

Detection Strategies

  • Inventory hosts loading the snd_ctxfi module via lsmod | grep snd_ctxfi and correlate with installed kernel versions
  • Monitor kernel ring buffer telemetry for page fault signatures originating in ALSA call paths
  • Track local processes that open large numbers of /dev/snd/pcmC*D*p device nodes within short time windows

Monitoring Recommendations

  • Forward kern.log and journald kernel facility messages to a centralized log platform and alert on Oops keywords tied to snd_ctxfi
  • Audit membership of the audio group and other groups granting access to /dev/snd/* devices on multi-user systems
  • Track kernel package versions across the fleet to identify hosts still running kernels prior to the fix

How to Mitigate CVE-2026-31602

Immediate Actions Required

  • Apply the upstream Linux kernel patches that revert CT_PTP_NUM to 1 in the snd_ctxfi driver
  • Unload the snd_ctxfi module on hosts that do not require Creative CT20K2 audio support using modprobe -r snd_ctxfi
  • Restrict membership of the audio group and limit local shell access to trusted users on affected systems

Patch Information

The fix is committed across multiple stable branches. See the upstream commits: Kernel commit 365c36e1, Kernel commit 3fd0685d, Kernel commit 45289400, Kernel commit ad9011a7, Kernel commit b7f5ecd1, and Kernel commit e9418da5. Rebuild and reboot into a patched kernel from your distribution as soon as it becomes available.

Workarounds

  • Blacklist the snd_ctxfi driver via /etc/modprobe.d/blacklist-ctxfi.conf on systems without Creative CT20K2 hardware
  • Remove untrusted users from the audio group to prevent local access to vulnerable PCM device nodes
  • Avoid configurations that open large numbers of simultaneous playback streams on unpatched kernels
bash
# Configuration example
# Blacklist the vulnerable ALSA ctxfi driver until the kernel is patched
echo "blacklist snd_ctxfi" | sudo tee /etc/modprobe.d/blacklist-ctxfi.conf
sudo modprobe -r snd_ctxfi

# Verify the module is no longer loaded
lsmod | grep snd_ctxfi

# Monitor kernel log for related Oops entries
sudo dmesg -T | grep -E "ct_vm_map|snd_ctxfi"

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.8

  • EPSS Probability0.01%

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

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-43490: Linux Kernel ksmbd Buffer Overflow Flaw

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

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

  • CVE-2026-43341: Linux Kernel Buffer Overflow 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