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

CVE-2026-6862: libefiboot DoS Vulnerability in efivar

CVE-2026-6862 is a denial of service flaw in libefiboot that allows local attackers to crash processes through infinite recursion. This article covers the technical details, affected systems, and mitigation strategies.

Published: April 23, 2026

CVE-2026-6862 Overview

A flaw was found in libefiboot, a component of efivar. The device path node parser in libefiboot fails to validate that each node's Length field is at least 4 bytes, which is the minimum size for an EFI (Extensible Firmware Interface) device path node header. A local user could exploit this vulnerability by providing a specially crafted device path node. This can lead to infinite recursion, causing stack exhaustion and a process crash, resulting in a denial of service (DoS).

Critical Impact

Local attackers can crash processes that use libefiboot by triggering stack exhaustion through malformed EFI device path nodes, leading to denial of service conditions on affected systems.

Affected Products

  • libefiboot (component of efivar)
  • efivar package
  • Linux distributions using efivar/libefiboot for EFI variable management

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-6862 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-6862

Vulnerability Analysis

This vulnerability stems from improper input validation in the device path node parser within libefiboot. The EFI device path node specification requires that each node header contains at minimum 4 bytes: a 1-byte Type field, a 1-byte SubType field, and a 2-byte Length field. The parser fails to enforce this minimum length requirement before processing node data.

When the parser encounters a malformed device path node with a Length field set to less than 4 bytes (or potentially zero), the parsing logic enters an infinite recursion state. Each recursive call attempts to process the same malformed node or advances improperly through the device path structure, ultimately exhausting the available stack space and causing the process to crash.

The weakness is classified as CWE-674 (Uncontrolled Recursion), indicating that the function does not properly limit recursive calls, making it susceptible to stack exhaustion attacks.

Root Cause

The root cause is missing boundary validation in the device path node parsing routine. The parser does not verify that the Length field of each EFI device path node meets the minimum 4-byte requirement before proceeding with recursive parsing operations. This allows crafted input to create parsing conditions that never terminate, leading to uncontrolled stack growth.

Attack Vector

The attack requires local access and user interaction. An attacker must craft a malicious EFI device path structure with nodes containing invalid Length values (less than 4 bytes) and deliver it to an application using libefiboot for parsing. When the vulnerable parser processes this malformed input, it enters infinite recursion, exhausting the process stack and causing a crash.

This vulnerability is exploited through providing specially crafted device path data to applications that utilize libefiboot's parsing functionality. The malformed input triggers the uncontrolled recursion condition, leading to stack exhaustion and subsequent denial of service.

Detection Methods for CVE-2026-6862

Indicators of Compromise

  • Process crashes in applications linked against libefiboot with stack overflow signals
  • Unexpected segmentation faults in EFI-related utilities such as efibootmgr or similar tools
  • System logs showing repeated crashes of processes that interact with EFI variables

Detection Strategies

  • Monitor for abnormal process terminations with stack overflow indicators in applications using libefiboot
  • Implement file integrity monitoring on EFI-related configuration files and boot entries
  • Deploy endpoint detection rules to identify processes crashing with recursion-related stack exhaustion patterns

Monitoring Recommendations

  • Enable crash dump collection for processes using libefiboot to capture forensic evidence of exploitation attempts
  • Monitor system stability metrics for unusual patterns of service restarts in EFI-related components
  • Review application logs for parsing errors related to malformed device path structures

How to Mitigate CVE-2026-6862

Immediate Actions Required

  • Update efivar/libefiboot packages to the latest patched versions when available from your distribution
  • Restrict local access to systems where unauthorized users could submit crafted EFI device path data
  • Monitor vendor advisories from Red Hat and other distributions for patch availability

Patch Information

Users should check for updates to the efivar package from their Linux distribution. For more information, refer to the Red Hat CVE-2026-6862 Advisory and the Red Hat Bug Report #2459982.

Workarounds

  • Limit access to EFI variable manipulation utilities to trusted administrators only
  • Implement application sandboxing or resource limits (such as ulimit -s) to contain the impact of stack exhaustion
  • Consider temporarily disabling or restricting applications that parse untrusted EFI device path input until patches are applied
bash
# Configuration example: Limit stack size to mitigate impact
# Add to /etc/security/limits.conf or systemd service file
# This limits damage from stack exhaustion but may affect legitimate deep recursion
* hard stack 8192

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechEfivar

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-674
  • Technical References
  • Red Hat CVE-2026-6862 Advisory

  • Red Hat Bug Report #2459982
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE 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