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

CVE-2026-43089: Linux Kernel Information Disclosure Flaw

CVE-2026-43089 is an information disclosure vulnerability in the Linux kernel's xfrm_user module that can leak sensitive data to userspace. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43089 Overview

CVE-2026-43089 is an information disclosure vulnerability in the Linux kernel's xfrm_user subsystem. The flaw exists in the build_mapping() function, where struct xfrm_usersa_id contains a one-byte padding hole following the proto field. The kernel never zeroes this padding before copying the structure to userspace, leaking uninitialized kernel memory.

The upstream fix zeroes the entire structure before assigning individual fields. Multiple stable kernel branches received backports, as reflected in the five referenced commits.

Critical Impact

Local users receiving xfrm netlink notifications can read one byte of uninitialized kernel stack or heap memory per event, potentially exposing sensitive data such as pointers, keys, or stack canaries used to defeat KASLR.

Affected Products

  • Linux kernel branches prior to the fixes in commits 1beb76b2053b, 5a1a4b049ddd, 700c9622b23c, d3125c541a96, and f779a6b6cdb6
  • Distributions shipping vulnerable mainline and stable kernels with CONFIG_XFRM_USER enabled
  • Systems exposing IPsec/XFRM netlink interfaces to unprivileged or sandboxed processes

Discovery Timeline

  • 2026-05-06 - CVE-2026-43089 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43089

Vulnerability Analysis

The vulnerability is an uninitialized memory disclosure [CWE-908] in the kernel's IPsec key management interface. The xfrm_user module exposes XFRM state and policy operations to userspace through netlink sockets. When the kernel sends mapping notifications, build_mapping() populates a struct xfrm_usersa_id and copies it into a netlink skb destined for userspace listeners.

Due to natural alignment rules, the C compiler inserts a one-byte padding hole after the proto field within struct xfrm_usersa_id. The original code assigns each member individually but never clears the padding byte. Whatever stack or slab content occupied that byte is transmitted to the receiver. The EPSS score of 0.018% reflects the local nature of the issue and the limited primitive provided by a single byte per event.

Root Cause

The root cause is incomplete structure initialization. build_mapping() writes individual fields of xfrm_usersa_id rather than first zeroing the entire object. C language semantics do not guarantee that struct padding is initialized when only fields are assigned. The fix replaces the field-by-field assignment with a full memset (or equivalent zero-initialization) followed by the individual assignments.

Attack Vector

A local process able to open an AF_NETLINK socket bound to NETLINK_XFRM and subscribe to the relevant multicast group can receive mapping notifications. Each notification leaks one byte of uninitialized kernel memory. Repeated leakage across many events can reveal pointers or other sensitive bytes useful for bypassing KASLR or chaining with other kernel vulnerabilities. Exploitation requires the CAP_NET_ADMIN capability in the relevant user namespace, which is achievable from inside unprivileged user namespaces on many distributions.

The vulnerability does not provide write access or direct code execution. Its value lies in pairing with secondary memory-corruption flaws to defeat kernel hardening.

Detection Methods for CVE-2026-43089

Indicators of Compromise

  • Unexpected processes opening NETLINK_XFRM sockets and joining XFRMNLGRP_MAPPING multicast groups without legitimate IPsec workloads
  • Anomalous use of CAP_NET_ADMIN from within user namespaces on hosts that do not run IKE daemons such as strongSwan, Libreswan, or iked
  • High-frequency consumption of XFRM mapping events from non-networking userspace components

Detection Strategies

  • Audit socket() calls with AF_NETLINK and protocol NETLINK_XFRM using auditd or eBPF probes attached to __sys_socket
  • Compare the running kernel version against the patched commits listed in the kernel.org stable tree to confirm exposure
  • Use KASAN or KMSAN-instrumented kernels in test environments to surface uninitialized memory reads from build_mapping()

Monitoring Recommendations

  • Forward kernel and audit logs to a centralized analytics platform and alert on unprivileged processes binding to NETLINK_XFRM
  • Track creation of unprivileged user namespaces on production hosts that do not require them, as this is a common precursor to local kernel exploitation
  • Monitor patch deployment status across the Linux fleet to verify the fix is applied on every node

How to Mitigate CVE-2026-43089

Immediate Actions Required

  • Apply the vendor kernel update that incorporates the upstream fix to build_mapping() in net/xfrm/xfrm_user.c
  • Restrict the ability to create unprivileged user namespaces on systems that do not need them by setting kernel.unprivileged_userns_clone=0 or equivalent sysctl
  • Inventory hosts running vulnerable kernel versions and prioritize those exposing local shell access to untrusted users

Patch Information

The fix is available across stable branches in the following commits: 1beb76b2053b, 5a1a4b049ddd, 700c9622b23c, d3125c541a96, and f779a6b6cdb6. The patch zero-initializes struct xfrm_usersa_id before assigning individual fields, eliminating the padding leak.

Workarounds

  • Disable the xfrm_user module on hosts that do not require IPsec by blacklisting it in /etc/modprobe.d/ if no IPsec services are active
  • Apply seccomp filters to sandboxed workloads that block socket(AF_NETLINK, ..., NETLINK_XFRM) to prevent subscription to mapping events
  • Restrict CAP_NET_ADMIN in container runtimes and disable user namespace creation for untrusted tenants
bash
# Configuration example: harden a host that does not use IPsec
echo 'install xfrm_user /bin/true' | sudo tee /etc/modprobe.d/disable-xfrm_user.conf
sudo sysctl -w kernel.unprivileged_userns_clone=0
echo 'kernel.unprivileged_userns_clone=0' | sudo tee /etc/sysctl.d/99-userns.conf

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-31708: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43088: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43085: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43224: Linux Kernel Information Disclosure 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