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

CVE-2026-43331: Linux Kernel DOS Vulnerability

CVE-2026-43331 is a denial of service vulnerability in Linux Kernel affecting KCOV instrumentation after segment register changes. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43331 Overview

CVE-2026-43331 is a Linux kernel vulnerability in the x86/kexec subsystem. The load_segments() function modifies segment registers, invalidating the GS base that Kernel Coverage (KCOV) relies on for per-CPU data access. When CONFIG_KCOV is enabled, subsequent instrumented C code calls such as native_gdt_invalidate() trigger an endless crash loop. The flaw affects Linux kernel 7.0 release candidates and is exercised by workflows that combine CONFIG_KEXEC and CONFIG_KCOV, such as syzkaller crash dump collection during coverage-guided fuzzing. The issue does not affect 32-bit kernels because KCOV is unsupported on that architecture.

Critical Impact

A local user with kexec privileges can trigger a kernel crash loop on KCOV-instrumented x86_64 systems, resulting in denial of service.

Affected Products

  • Linux Kernel 7.0-rc1 through 7.0-rc6
  • x86_64 kernels built with CONFIG_KCOV and CONFIG_KEXEC enabled
  • Systems running coverage-guided fuzzing tooling such as syzkaller

Discovery Timeline

  • 2026-05-08 - CVE-2026-43331 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-43331

Vulnerability Analysis

The vulnerability resides in arch/x86/kernel/machine_kexec_64.c. During a kexec operation, load_segments() reloads the segment registers in preparation for transitioning to a new kernel. This operation invalidates the GS base register on x86_64.

KCOV is the kernel's coverage instrumentation infrastructure used by fuzzers such as syzkaller. KCOV stores per-CPU coverage state accessed through the GS base. Every function compiled with KCOV instrumentation contains a call to __sanitizer_cov_trace_pc() at each basic block. This callback dereferences per-CPU data via GS.

After load_segments() executes, the GS base no longer points to valid per-CPU data. The next instrumented function call, including native_gdt_invalidate(), attempts to record coverage and faults. The fault handler itself is instrumented, producing a recursive crash loop that hangs the kernel.

Root Cause

The root cause is a mismatch between the late-stage kexec teardown sequence and the assumptions made by KCOV instrumentation. KCOV expects a valid GS base throughout kernel execution. The kexec code path violates this invariant before instrumented C functions are invoked.

Attack Vector

Exploitation requires local access with privileges sufficient to invoke kexec. An attacker with CAP_SYS_BOOT can load a secondary kernel and trigger the transition. On affected builds, this reliably crashes the running kernel and denies service. The reproduction sequence is kexec -l /boot/otherKernel followed by kexec -e.

The issue is not a memory corruption primitive and does not yield code execution or information disclosure. The CWE classification is recorded as NVD-CWE-noinfo.

No public proof-of-concept beyond the upstream reproducer has been released, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog.

Detection Methods for CVE-2026-43331

Indicators of Compromise

  • Unexplained kernel hangs or panic loops immediately following a kexec -e invocation on x86_64 hosts.
  • Crash signatures referencing native_gdt_invalidate() or __sanitizer_cov_trace_pc() in serial console output.
  • Presence of both CONFIG_KCOV=y and CONFIG_KEXEC=y on kernel build configurations in production environments.

Detection Strategies

  • Audit kernel build configurations across the fleet to identify systems where KCOV instrumentation is enabled outside dedicated fuzzing infrastructure.
  • Monitor for kexec_load and kexec_file_load syscalls in audit logs to identify users invoking kexec on sensitive hosts.
  • Alert on kernel panics correlated with prior kexec activity from non-administrative accounts.

Monitoring Recommendations

  • Enable auditd rules for CAP_SYS_BOOT capability use and kexec-related syscalls.
  • Forward kernel ring buffer messages and panic traces to a centralized logging platform for retrospective analysis.
  • Track the running kernel version on all x86_64 hosts and flag any system still on Linux 7.0-rc1 through 7.0-rc6 with KCOV enabled.

How to Mitigate CVE-2026-43331

Immediate Actions Required

  • Upgrade affected x86_64 hosts to a Linux kernel build that includes the upstream fix referenced in the kernel.org commits.
  • Remove CONFIG_KCOV from production kernel configurations; KCOV is intended for fuzzing and development environments only.
  • Restrict the CAP_SYS_BOOT capability to a minimal set of administrative accounts and review sudo policies that permit kexec.

Patch Information

The fix disables KCOV instrumentation for the entire arch/x86/kernel/machine_kexec_64.c and arch/x86/mm/physaddr.c translation units. This approach was chosen over per-function annotations because the latter is fragile and over guarding the KCOV fast path because that would impose runtime overhead on every instrumented call. The upstream patches are available as Kernel Git Commit 1e3e985, Kernel Git Commit 917e3ad, and Kernel Git Commit de05c66.

Workarounds

  • Disable CONFIG_KCOV and rebuild the kernel where coverage instrumentation is not required.
  • Avoid invoking kexec on KCOV-instrumented kernels until the patched build is deployed.
  • For syzkaller crash-dump workflows, pin fuzzing hosts to patched kernel revisions before re-enabling combined CONFIG_KEXEC and CONFIG_KCOV builds.
bash
# Verify whether the running kernel was built with KCOV instrumentation
grep -E 'CONFIG_KCOV|CONFIG_KEXEC' /boot/config-$(uname -r)

# Restrict kexec capability to root only and audit invocations
auditctl -a always,exit -F arch=b64 -S kexec_load -S kexec_file_load -k kexec_use

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 1e3e985

  • Kernel Git Commit 917e3ad

  • Kernel Git Commit de05c66
  • Related CVEs
  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43338: Linux Kernel DOS Vulnerability

  • CVE-2026-43345: Linux Kernel DoS Vulnerability

  • CVE-2026-43325: Linux Kernel iwlwifi DoS 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