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

CVE-2026-43033: Linux Kernel Privilege Escalation Flaw

CVE-2026-43033 is a privilege escalation vulnerability in the Linux kernel's crypto authencesn component that affects out-of-place decryption operations. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43033 Overview

CVE-2026-43033 is a Linux kernel vulnerability in the crypto/authencesn module. The flaw involves how the kernel handles the high-order sequence number (hiseq) during out-of-place decryption operations where the source and destination buffers differ. The kernel incorrectly placed hiseq at the end of the destination buffer instead of re-copying it from the source, and the data to be hashed was not rearranged accordingly. This impacts the Encapsulating Security Payload (ESP) authenticated encryption path used by IPsec.

Critical Impact

A local low-privileged attacker can leverage flaws in the authenticated encryption path to compromise confidentiality, integrity, and availability of the affected Linux system.

Affected Products

  • Linux kernel crypto/authencesn subsystem
  • Linux distributions shipping vulnerable mainline and stable kernels prior to the referenced fixes
  • Systems using IPsec ESP with extended sequence numbers (ESN) and authenticated encryption modes

Discovery Timeline

  • 2026-05-01 - CVE-2026-43033 published to NVD
  • 2026-05-03 - Last updated in NVD database

Technical Details for CVE-2026-43033

Vulnerability Analysis

The vulnerability resides in the authencesn template, which combines authentication and encryption with extended sequence numbers for IPsec ESP. During decryption, the kernel must process the 64-bit sequence number where the high-order 32 bits (hiseq) are appended for authentication purposes but are not part of the ciphertext payload itself.

When decryption is performed in-place (src == dst), placing hiseq at the end of the destination buffer is acceptable because source and destination share memory. When decryption is out-of-place (src != dst), the kernel still wrote hiseq at the end of dst, even though the value should simply be re-copied from src. The data layout used as input to the hash computation was not rearranged to match this difference, leading to inconsistent buffer state during cryptographic verification.

Root Cause

The root cause is improper handling of buffer layout in the out-of-place decryption code path of authencesn. The implementation did not differentiate between in-place and out-of-place operations when staging the high-order sequence bits and assembling the data fed into the hash function, producing mismatched buffer contents that the kernel cryptographic verification logic operated on.

Attack Vector

Exploitation requires local access with low privileges and no user interaction. An attacker able to trigger crafted ESP/ESN-protected traffic processing or invoke the AF_ALG socket interface to reach the authencesn template can exercise the affected code path. The flaw can lead to memory corruption affecting confidentiality, integrity, and availability within the kernel.

No verified public proof-of-concept code is available. Refer to the upstream patches for the precise fix logic.

Detection Methods for CVE-2026-43033

Indicators of Compromise

  • Unexpected kernel oops or crashes referencing authencesn, crypto_authenc_esn, or related ESP/IPsec call stacks
  • Anomalous IPsec ESN authentication failures coinciding with kernel cryptographic subsystem errors
  • Unprivileged processes interacting with the AF_ALG socket family to instantiate authencesn transforms outside expected workloads

Detection Strategies

  • Inventory running kernel versions across Linux fleets and compare against the upstream stable trees referenced by the kernel patches
  • Audit /proc/crypto for the presence of authencesn and correlate with workloads that legitimately require it
  • Monitor auditd and eBPF-based telemetry for socket(AF_ALG, ...) calls binding to authencesn from unexpected user contexts

Monitoring Recommendations

  • Forward kernel ring buffer (dmesg) and journald records to a central log store and alert on crypto subsystem errors
  • Track IPsec daemon logs (strongSwan, libreswan) for repeated ESN integrity check failures
  • Subscribe to distribution security trackers to receive backport notifications for the listed kernel commits

How to Mitigate CVE-2026-43033

Immediate Actions Required

  • Apply the vendor-provided kernel update containing one of the upstream commits as soon as it is available for your distribution
  • Restrict access to the AF_ALG socket interface using seccomp, SELinux, or AppArmor policies on systems that do not require user-space crypto access
  • Limit local shell access on multi-tenant Linux hosts to reduce exposure to local attack vectors

Patch Information

The issue is fixed by the following upstream Linux kernel commits: Kernel Patch 153d552, Kernel Patch 5466e7d, Kernel Patch 89fe118, Kernel Patch 8c62f61, Kernel Patch cded400, Kernel Patch d0c4ff6, Kernel Patch d589abd, and Kernel Patch e024941. The fix ensures hiseq is re-copied from the source on out-of-place decryption and rearranges the hashed data layout accordingly.

Workarounds

  • Disable or avoid IPsec ESP configurations that negotiate extended sequence numbers with authencesn until the patch is applied
  • Block the loading of the authenc_esn kernel module on systems that do not require IPsec ESN with modprobe blacklisting where operationally feasible
  • Constrain unprivileged user namespaces and AF_ALG availability to reduce the local attack surface

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • 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
  • Technical References
  • Kernel Patch 153d552

  • Kernel Patch 5466e7d

  • Kernel Patch 89fe118

  • Kernel Patch 8c62f61

  • Kernel Patch cded400

  • Kernel Patch d0c4ff6

  • Kernel Patch d589abd

  • Kernel Patch e024941
  • Related CVEs
  • CVE-2026-43332: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43344: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43306: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43351: Linux Kernel Privilege Escalation Flaw
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