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

CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-31743 is a buffer overflow flaw in the Linux Kernel's nvmem zynqmp_nvmem component that can cause memory corruption through undersized DMA buffer access. This article covers technical details, affected versions, and fixes.

Published: May 7, 2026

CVE-2026-31743 Overview

CVE-2026-31743 is a high-severity out-of-bounds write vulnerability in the Linux kernel's zynqmp_nvmem driver. The flaw stems from an incorrect buffer size used in dma_alloc_coherent and memcpy operations. The undersized DMA buffer allocation can lead to memory corruption when the driver accesses non-volatile memory on Xilinx ZynqMP platforms. The issue is tracked under [CWE-787] (Out-of-bounds Write) and affects multiple Linux kernel versions, including the 7.0 release candidate series. Local attackers with low privileges can exploit the condition to compromise confidentiality, integrity, and availability of the affected system.

Critical Impact

An undersized DMA buffer in the zynqmp_nvmem driver can trigger memory corruption, enabling local privilege escalation or kernel-level denial of service on Xilinx ZynqMP-based Linux systems.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 7.0-rc1 through 7.0-rc6
  • Systems using the Xilinx ZynqMP NVMEM driver (zynqmp_nvmem)

Discovery Timeline

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

Technical Details for CVE-2026-31743

Vulnerability Analysis

The vulnerability resides in the zynqmp_nvmem driver, which provides access to non-volatile memory on Xilinx ZynqMP system-on-chip platforms. The driver allocates a DMA-coherent buffer using dma_alloc_coherent and later copies data into it using memcpy. Both operations reference an incorrect buffer size value. The mismatch between the allocated buffer size and the actual data length copied results in out-of-bounds writes to adjacent kernel memory.

The defect maps to [CWE-787] Out-of-bounds Write. Memory corruption in DMA-mapped regions is particularly dangerous because the affected memory may be accessible to both the CPU and hardware DMA engines. Successful exploitation can corrupt kernel data structures, function pointers, or page tables.

Root Cause

The root cause is a buffer-size constant or computation error in the zynqmp_nvmem driver source. The driver requests fewer bytes from dma_alloc_coherent than the subsequent memcpy writes into the buffer. Because DMA-coherent allocations are page-aligned, the overflow may silently corrupt neighboring kernel allocations rather than triggering immediate faults. The fix corrects the size argument so that allocation and copy lengths match the data being transferred.

Attack Vector

Exploitation requires local access with low privileges on a Linux system running the vulnerable zynqmp_nvmem driver. An attacker with the ability to invoke NVMEM read or write operations through sysfs or nvmem cell consumers can trigger the undersized buffer path. No user interaction is required. Because the corruption occurs in kernel address space, a successful attack can yield kernel code execution or full system compromise on affected ZynqMP hardware.

No public proof-of-concept exploit code is currently available for CVE-2026-31743. The vulnerability mechanism is documented in the upstream stable kernel commits referenced by the Linux maintainers. See the Kernel Git Commit f9b8861 for the corrected buffer-size handling.

Detection Methods for CVE-2026-31743

Indicators of Compromise

  • Unexpected kernel oops or panic messages referencing zynqmp_nvmem or dma_alloc_coherent in dmesg and /var/log/kern.log.
  • KASAN or SLUB debug reports flagging out-of-bounds writes adjacent to NVMEM DMA buffers.
  • Unexplained corruption of kernel slab objects on Xilinx ZynqMP platforms.

Detection Strategies

  • Inventory ZynqMP-based Linux assets and verify the running kernel version against the patched stable branches listed in the kernel.org advisories.
  • Enable KASAN (Kernel Address Sanitizer) in test environments to surface out-of-bounds writes during NVMEM access.
  • Audit loaded kernel modules for zynqmp_nvmem and correlate with CPE entries published in NVD for CVE-2026-31743.

Monitoring Recommendations

  • Monitor kernel logs for repeated faults originating in NVMEM or DMA subsystems on embedded Linux fleets.
  • Track local privilege escalation telemetry on ZynqMP devices, including unexpected uid=0 transitions and kernel module load anomalies.
  • Centralize embedded device telemetry in a SIEM or data lake to correlate kernel crashes with attempted exploitation patterns.

How to Mitigate CVE-2026-31743

Immediate Actions Required

  • Identify all Linux systems running on Xilinx ZynqMP hardware that load the zynqmp_nvmem driver.
  • Apply the upstream kernel patches referenced in the kernel.org stable commits as soon as vendor-rebuilt kernels are available.
  • Restrict local shell access on affected devices to trusted administrators until patches are deployed.

Patch Information

The Linux kernel maintainers have committed fixes to the stable tree. Update to a kernel build that includes one of the following commits: Kernel Git Commit 2f6e5b9, Kernel Git Commit 6c01e7f, Kernel Git Commit 784ed4a, and Kernel Git Commit f9b8861. Distribution vendors will incorporate these fixes in subsequent kernel package releases for embedded and server distributions.

Workarounds

  • Where the patch cannot be applied immediately, blacklist the zynqmp_nvmem module if NVMEM access is not required for the workload.
  • Tighten filesystem permissions on /sys/bus/nvmem/devices/ and related sysfs entries to limit which local users can trigger NVMEM operations.
  • Enforce least-privilege access on ZynqMP devices and audit any local accounts that retain shell access.

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

  • 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
  • CWE-787
  • Vendor Resources
  • Kernel Git Commit 2f6e5b9

  • Kernel Git Commit 6c01e7f

  • Kernel Git Commit 784ed4a

  • Kernel Git Commit f9b8861
  • Related CVEs
  • CVE-2026-43051: Linux Kernel Buffer Overflow Vulnerability

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

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