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
    • 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-5745

CVE-2026-5745: libarchive NULL Pointer DoS Vulnerability

CVE-2026-5745 is a NULL pointer dereference flaw in libarchive's ACL parsing logic that enables denial of service attacks. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: April 10, 2026

CVE-2026-5745 Overview

A NULL pointer dereference vulnerability has been identified in libarchive, specifically within the Access Control List (ACL) parsing functionality. The flaw exists in the archive_acl_from_text_nl() function, which fails to perform adequate validation when processing malformed ACL strings. When an attacker provides a maliciously crafted archive containing improperly formatted ACL entries (such as a bare "d" or "default" tag without subsequent required fields), applications utilizing the libarchive API—including the commonly used bsdtar utility—can be forced to crash.

Critical Impact

Attackers can cause Denial of Service (DoS) conditions in applications processing untrusted archive files by exploiting the NULL pointer dereference in libarchive's ACL parsing logic.

Affected Products

  • libarchive (versions with vulnerable archive_acl_from_text_nl() function)
  • Applications utilizing the libarchive API (e.g., bsdtar)
  • Linux distributions and systems with vulnerable libarchive packages

Discovery Timeline

  • 2026-04-07 - CVE-2026-5745 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-5745

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference), a memory corruption class vulnerability that occurs when a program attempts to dereference a pointer that is expected to be valid but is actually NULL. In the context of libarchive, the vulnerability manifests during ACL text parsing operations.

The archive_acl_from_text_nl() function is responsible for parsing ACL strings from archive metadata. When the function encounters a malformed ACL string—specifically one containing only a "d" or "default" tag without the required subsequent field specifications—it fails to properly validate the input before advancing internal pointers. This results in the function attempting to access memory through a NULL pointer, causing an immediate application crash.

The local attack vector requires user interaction, as a victim must process a maliciously crafted archive file. However, in automated environments where archives are processed without manual inspection, this could lead to service disruption.

Root Cause

The root cause lies in insufficient input validation within the archive_acl_from_text_nl() function. When parsing ACL text entries, the function expects a complete ACL specification following tag identifiers like "default" or "d". The code advances to the next expected field without first verifying that additional data exists, leading to a NULL pointer when the malformed string terminates prematurely.

The absence of defensive programming practices—specifically, failure to check for NULL or validate string boundaries before pointer operations—allows this condition to occur.

Attack Vector

The attack requires local access and user interaction. An attacker must craft a malicious archive file containing specially formatted ACL metadata with incomplete or malformed entries. The attack scenario proceeds as follows:

The attacker creates an archive file with embedded ACL data containing a bare "default" or "d" tag without the required subsequent ACL fields. When a victim extracts or processes this archive using bsdtar or another application built on libarchive, the archive_acl_from_text_nl() function parses the malformed ACL string and crashes due to the NULL pointer dereference, resulting in Denial of Service.

This vulnerability is particularly concerning in environments where archive processing is automated, such as backup systems, package managers, or file synchronization services, where crashes could disrupt critical operations.

Detection Methods for CVE-2026-5745

Indicators of Compromise

  • Application crashes in bsdtar or other libarchive-dependent utilities during archive extraction
  • Segmentation fault errors in system logs associated with libarchive functions
  • Core dump files indicating crashes in archive_acl_from_text_nl() or related ACL parsing routines

Detection Strategies

  • Monitor system logs for segmentation faults in processes using libarchive (e.g., bsdtar, cmake, backup utilities)
  • Implement file integrity monitoring on libarchive library files to detect unauthorized modifications
  • Deploy application crash monitoring to identify patterns of DoS attempts via malformed archives

Monitoring Recommendations

  • Enable crash reporting and monitoring for applications that process archive files
  • Implement rate limiting on archive processing in automated systems to mitigate repeated DoS attempts
  • Review system logs for unusual patterns of application crashes during archive operations

How to Mitigate CVE-2026-5745

Immediate Actions Required

  • Review and update libarchive packages when vendor patches become available
  • Limit archive processing to trusted sources where possible
  • Implement sandboxing for archive extraction operations to contain potential crashes

Patch Information

Consult vendor advisories for patch availability. Refer to the Red Hat CVE-2026-5745 Advisory and the Red Hat Bugzilla Report #2455921 for the latest security updates and patch status for affected distributions.

Workarounds

  • Validate and scan archive files before processing using integrity checking tools
  • Run archive extraction utilities in isolated environments (containers, sandboxes) to contain crashes
  • Implement process monitoring and automatic restart for critical archive processing services to maintain availability
  • Restrict archive processing to files from trusted sources only
bash
# Configuration example: Running bsdtar in a sandboxed environment
# Using systemd sandboxing for archive processing service
# Add to service unit file [Service] section:
# ProtectSystem=strict
# PrivateTmp=true
# NoNewPrivileges=true
# RestrictSUIDSGID=true

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibarchive

  • 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-476
  • Technical References
  • Red Hat CVE-2026-5745 Advisory

  • Red Hat Bugzilla Report #2455921
  • Related CVEs
  • CVE-2026-4426: libarchive DOS Vulnerability

  • CVE-2026-4111: libarchive RAR5 DoS Vulnerability

  • CVE-2025-5916: Libarchive Integer Overflow DoS Vulnerability

  • CVE-2025-25724: Libarchive 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