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

CVE-2026-43027: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43027 is a use-after-free flaw in the Linux kernel's netfilter component that occurs when helper objects are freed prematurely. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43027 Overview

CVE-2026-43027 is a use-after-free vulnerability in the Linux kernel's netfilter nf_conntrack_helper subsystem. The flaw resides in nf_conntrack_helper_unregister(), which calls nf_ct_expect_iterate_destroy() to remove expectations belonging to a helper being unregistered. The function passes NULL instead of the helper pointer as the data argument, so expect_iter_me() never matches any expectation. As a result, expectations referencing the helper survive the cleanup. After nfnl_cthelper_del() frees the helper object, subsequent expectation dumps or init_conntrack() calls dereference the freed exp->helper, triggering a use-after-free condition detected by KASAN.

Critical Impact

Local attackers can trigger a kernel use-after-free by reading conntrack expectation data after a helper unregistration, leading to potential memory corruption or privilege escalation.

Affected Products

  • Linux kernel (multiple stable branches affected per kernel.org commits)
  • Distributions shipping kernels with the netfilter nf_conntrack_helper subsystem
  • Systems using nfnetlink_cthelper for user-space conntrack helper registration

Discovery Timeline

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

Technical Details for CVE-2026-43027

Vulnerability Analysis

The vulnerability is a use-after-free [CWE-416] in the Linux kernel's connection tracking helper infrastructure. When a conntrack helper is unregistered, the kernel must remove any pending expectations that reference it. The cleanup logic invokes nf_ct_expect_iterate_destroy() with a callback expect_iter_me() that compares each expectation's helper pointer against a supplied data argument.

The defect is that nf_conntrack_helper_unregister() passes NULL rather than the helper pointer being unregistered. The match function therefore never identifies any expectation as belonging to the helper, and every expectation survives. Control then returns to nfnl_cthelper_del(), which proceeds to free the helper object via kfree.

Any later access to the orphaned expectations dereferences a dangling exp->helper pointer. The KASAN report shows the read occurring inside string() during seq_printf(), called from exp_seq_show() when reading /proc/net/nf_conntrack_expect. Packet processing paths reaching init_conntrack() can also trigger the same dereference.

Root Cause

The root cause is an incorrect argument passed to a callback-based iteration function. The expect_iter_me() predicate requires the helper pointer for comparison, but the caller supplied NULL, defeating the cleanup logic entirely. This is a logic bug rather than a memory boundary error, but its consequence is a stale pointer accessible after free.

Attack Vector

A local attacker with the ability to register and unregister conntrack helpers via nfnetlink_cthelper can stage the use-after-free. After triggering a helper unregistration with active expectations, the attacker reads /proc/net/nf_conntrack_expect or sends traffic that invokes init_conntrack(). The kernel then dereferences the freed helper structure, producing memory corruption suitable for further exploitation.

The vulnerability mechanism is described in detail in the upstream patches. See the kernel.org commit fixing the helper pointer for the exact code change.

Detection Methods for CVE-2026-43027

Indicators of Compromise

  • KASAN slab-use-after-free reports referencing string+0x38f/0x430, vsnprintf, seq_printf, or exp_seq_show in kernel logs
  • Unexpected kernel oops or panic traces originating from init_conntrack() after cthelper unregistration
  • Unprivileged or container processes invoking nfnetlink_cthelper to register and remove helpers in rapid succession

Detection Strategies

  • Monitor kernel ring buffer (dmesg) for KASAN reports tagged slab-use-after-free involving conntrack expectation paths
  • Audit usage of the NFNL_SUBSYS_CTHELPER netlink subsystem to identify processes registering or deleting conntrack helpers
  • Track reads of /proc/net/nf_conntrack_expect correlated with prior helper deletion events

Monitoring Recommendations

  • Enable KASAN on test kernels to surface use-after-free conditions during fuzzing or canary deployment
  • Forward kernel logs to a centralized analytics platform and alert on BUG: KASAN and general protection fault patterns
  • Review audit logs for the CAP_NET_ADMIN capability use within unprivileged containers or user namespaces

How to Mitigate CVE-2026-43027

Immediate Actions Required

  • Apply the upstream Linux kernel patches that pass the actual helper pointer to nf_ct_expect_iterate_destroy() from your distribution
  • Restrict CAP_NET_ADMIN and access to user namespaces for untrusted workloads to prevent local triggering
  • Disable or unload the nfnetlink_cthelper module on systems that do not require user-space conntrack helpers

Patch Information

The fix is committed across multiple stable Linux kernel branches. Apply the vendor kernel update that incorporates the relevant commit, for example commit 2c16e4d6, commit 2cf2737c, commit 504ba416, commit 5cf28d5c, commit 620f3d14, commit 90bd7e85, commit a242a9ae, or commit dc1739ef. The fix passes the actual helper pointer so expectations referencing it are properly destroyed before the helper object is freed.

Workarounds

  • Blacklist the nfnetlink_cthelper kernel module where conntrack helpers are not in use
  • Deny CAP_NET_ADMIN to container workloads via seccomp, AppArmor, or SELinux policies
  • Avoid exposing /proc/net/nf_conntrack_expect to unprivileged users in shared multi-tenant systems
bash
# Configuration example: blacklist nfnetlink_cthelper module
echo 'blacklist nfnetlink_cthelper' | sudo tee /etc/modprobe.d/blacklist-cthelper.conf
sudo rmmod nfnetlink_cthelper 2>/dev/null || true

# Verify the module is not loaded
lsmod | grep nfnetlink_cthelper

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31749: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31750: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31703: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43163: Linux Kernel Use-After-Free 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