A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43043

CVE-2026-43043: Linux Kernel AF_ALG DoS Vulnerability

CVE-2026-43043 is a denial of service flaw in the Linux kernel's AF_ALG crypto interface causing NULL pointer dereference. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-43043 Overview

CVE-2026-43043 is a NULL pointer dereference vulnerability in the Linux kernel's AF_ALG cryptographic socket interface. The flaw resides in the af_alg_alloc_tsgl() function, which fails to unmark the end of a Scatter/Gather List (SGL) when chaining a new af_alg_tsgl structure. When a sendmsg() call fills an SGL exactly to MAX_SGL_ENTS, the last entry receives an end marker. A subsequent sendmsg() allocates and chains a new SGL but does not clear the previous end marker, causing the crypto scatterwalk to terminate prematurely and trigger a kernel panic on sg_next() dereference.

Critical Impact

A local unprivileged user with access to AF_ALG sockets can trigger a kernel NULL pointer dereference, resulting in a kernel panic and denial of service.

Affected Products

  • Linux kernel versions implementing the AF_ALG cryptographic interface
  • Distributions exposing CONFIG_CRYPTO_USER_API and related crypto socket families
  • Systems where unprivileged users can open AF_ALG sockets

Discovery Timeline

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

Technical Details for CVE-2026-43043

Vulnerability Analysis

The AF_ALG interface allows userspace applications to access kernel cryptographic transforms through a socket-based API. Data submitted via sendmsg() is stored in a chain of af_alg_tsgl structures, each holding a Scatter/Gather List of up to MAX_SGL_ENTS entries. The kernel marks the final entry of an SGL with an end bit so traversal routines know when to stop.

When an SGL fills exactly to capacity and a new sendmsg() extends the buffer, af_alg_alloc_tsgl() allocates a new SGL and links it via sg_chain(). The defect is the missing call to clear the end marker on the previous SGL's final data entry before chaining. As a result, the chained SGL is unreachable through standard traversal.

During crypto operations, the scatterwalk iterator follows the chain via sg_next(). Hitting the stale end marker, the iterator returns NULL prematurely. Subsequent dereference of this NULL pointer in kernel context produces an oops and panics the system.

Root Cause

The root cause is incorrect SGL chaining logic [CWE-476]. The fix explicitly unmarks the previous SGL's terminal entry before performing sg_chain() in af_alg_alloc_tsgl(), restoring correct traversal semantics across chained scatter/gather lists.

Attack Vector

A local user with permission to open an AF_ALG socket can trigger the condition by issuing successive sendmsg() calls sized to align exactly with MAX_SGL_ENTS boundaries. No special privileges are required beyond access to the crypto user API. Exploitation results in a kernel panic and denial of service. See the upstream fix in the Kernel Commit - Security Fix 1 for technical details.

// Conceptual flow (no synthetic exploit code provided)
// 1. socket(AF_ALG, SOCK_SEQPACKET, 0) and bind to a cipher
// 2. accept() to obtain operation socket
// 3. sendmsg() with payload sized to fill SGL exactly to MAX_SGL_ENTS
// 4. sendmsg() again to force af_alg_alloc_tsgl() chaining
// 5. Trigger crypto operation -> scatterwalk hits stale end marker -> NULL deref

Detection Methods for CVE-2026-43043

Indicators of Compromise

  • Kernel oops messages referencing sg_next, scatterwalk_start, or af_alg_* symbols in dmesg or /var/log/kern.log
  • Unexpected system panics or reboots on hosts where untrusted local users have AF_ALG access
  • Process crash traces involving sendmsg() against AF_ALG sockets followed by crypto operations

Detection Strategies

  • Monitor kernel ring buffer for NULL pointer dereference traces containing af_alg_alloc_tsgl or scatterwalk frames
  • Audit running kernel versions against the patched commits referenced on git.kernel.org to identify unpatched hosts
  • Track auditd events for processes opening AF_ALG sockets in environments where this is uncommon

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on BUG: kernel NULL pointer dereference events
  • Inventory Linux hosts and correlate kernel build versions with the upstream stable branches that contain the fix
  • Establish baselines for AF_ALG socket usage and flag anomalous activity from non-cryptographic workloads

How to Mitigate CVE-2026-43043

Immediate Actions Required

  • Apply the upstream kernel patch that adds the missing end-marker clearing in af_alg_alloc_tsgl() from your distribution's stable kernel update
  • Reboot affected hosts after patching to load the fixed kernel image
  • Restrict access to the AF_ALG interface on multi-tenant or shared systems until patches are deployed

Patch Information

The fix is distributed across multiple stable kernel branches. Reference commits include Kernel Commit - Security Fix 1, Kernel Commit - Security Fix 2, Kernel Commit - Security Update, Kernel Commit - Security Improvement, Kernel Commit - Bug Fix, Kernel Commit - Security Enhancement, Kernel Commit - Code Correction, and Kernel Commit - Security Revision. Track your distribution's security advisories for backported builds.

Workarounds

  • Disable the algif_* kernel modules (algif_skcipher, algif_hash, algif_aead, algif_rng) where AF_ALG functionality is not required
  • Use a kernel module blacklist to prevent loading of af_alg on hosts that do not need userspace crypto sockets
  • Apply seccomp or LSM policies to restrict the socket() syscall with AF_ALG family for untrusted workloads
bash
# Blacklist AF_ALG modules where the interface is unused
cat <<EOF | sudo tee /etc/modprobe.d/disable-af_alg.conf
blacklist algif_skcipher
blacklist algif_hash
blacklist algif_aead
blacklist algif_rng
blacklist af_alg
install af_alg /bin/true
EOF

# Verify the modules are not currently loaded
lsmod | grep -E 'algif_|af_alg'

# Confirm running kernel against patched stable releases
uname -r

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit - Security Fix 1

  • Kernel Commit - Security Fix 2

  • Kernel Commit - Security Update

  • Kernel Commit - Security Improvement

  • Kernel Commit - Bug Fix

  • Kernel Commit - Security Enhancement

  • Kernel Commit - Code Correction

  • Kernel Commit - Security Revision
  • Related CVEs
  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS 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