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

CVE-2026-9149: libsolv Buffer Overflow Vulnerability

CVE-2026-9149 is a heap buffer overflow flaw in libsolv triggered by malicious .solv files with negative size values. Attackers can exploit this to cause denial of service. This article covers technical details, impact, and mitigation.

Published: May 21, 2026

CVE-2026-9149 Overview

CVE-2026-9149 is a heap buffer overflow vulnerability in libsolv, the library used by package managers such as DNF and Zypper to resolve package dependencies. The flaw resides in the repo_add_solv function, which fails to validate negative size values when parsing .solv files. A crafted .solv file triggers an undersized memory allocation followed by an out-of-bounds write on the heap. An attacker who convinces a victim to process a malicious .solv file can cause a denial of service (DoS). The vulnerability is classified under CWE-122 (Heap-based Buffer Overflow).

Critical Impact

Processing a crafted .solv file leads to heap memory corruption and application crash, disrupting package management operations on affected Linux systems.

Affected Products

  • libsolv (openSUSE upstream project)
  • Red Hat Enterprise Linux distributions bundling vulnerable libsolv versions
  • Package managers and tooling that link against libsolv (DNF, Zypper, PackageKit)

Discovery Timeline

  • 2026-05-21 - CVE-2026-9149 published to NVD
  • 2026-05-21 - Last updated in NVD database

Technical Details for CVE-2026-9149

Vulnerability Analysis

The vulnerability resides in the repo_add_solv function inside libsolv. This function parses binary .solv files containing serialized repository metadata. The parser reads size fields from the input file and uses them to allocate buffers for subsequent data. The function does not validate that these size fields are non-negative before passing them to the allocator. When a negative value is interpreted as a signed integer and converted for allocation, it produces an undersized or zero-sized buffer. Later write operations then exceed the allocated boundary and corrupt adjacent heap memory. The result is process termination or undefined behavior in the consuming application.

Root Cause

The root cause is missing input validation on size fields read from untrusted .solv files. The code assumes well-formed input from the repository tooling, but the .solv format can be crafted offline. Negative size values bypass implicit non-negativity assumptions in allocation math, producing the undersized buffer that the parser later overruns. The upstream fix in GitHub Pull Request #617 adds bounds checks that reject negative or implausible size values before allocation.

Attack Vector

Exploitation requires user interaction, as indicated by the CVSS vector component UI:R. An attacker delivers a malicious .solv file through a compromised repository mirror, a crafted package archive, or a social engineering channel. When the victim runs a package manager operation that loads the file via libsolv, the parser triggers the heap overflow. The attack does not require authentication and can be staged remotely by hosting the malicious file on a network-accessible resource. The confirmed impact is denial of service through process crash. Refer to the Red Hat CVE Advisory and Red Hat Bugzilla Report for vendor analysis.

Detection Methods for CVE-2026-9149

Indicators of Compromise

  • Unexpected crashes or segmentation faults in processes linking libsolv, such as dnf, zypper, microdnf, or packagekitd.
  • .solv files in repository cache directories such as /var/cache/dnf/ or /var/cache/zypp/ originating from untrusted mirrors.
  • Core dumps referencing repo_add_solv in the call stack.

Detection Strategies

  • Monitor package manager processes for abnormal termination, signal SIGSEGV, or heap corruption messages in dmesg and journalctl output.
  • Audit configured repository sources and verify that .solv cache files come from signed, trusted mirrors.
  • Run AddressSanitizer-instrumented builds of libsolv in test environments to flag heap-buffer-overflow events during repository refresh.

Monitoring Recommendations

  • Forward system logs and crash reports to a centralized logging platform and alert on repeated failures in libsolv-linked binaries.
  • Track file integrity of .solv cache files and flag unexpected modifications outside scheduled dnf makecache or zypper refresh operations.
  • Inventory hosts running affected libsolv versions and prioritize them for patching.

How to Mitigate CVE-2026-9149

Immediate Actions Required

  • Apply vendor-provided libsolv updates as soon as they are published by your Linux distribution.
  • Restrict package manager operations to signed, trusted repository mirrors and disable third-party repositories of unknown provenance.
  • Clear existing .solv cache files originating from untrusted sources using dnf clean all or zypper clean --all.

Patch Information

The upstream fix is available in the GitHub Pull Request for libsolv, which adds validation for size values parsed by repo_add_solv. Distribution-specific patches are tracked in the Red Hat CVE Advisory. Apply distribution updates through dnf update libsolv or zypper update libsolv once the patched package is available in your channel.

Workarounds

  • Avoid running package management commands that consume .solv files from untrusted sources until patches are applied.
  • Configure repository definitions to require GPG signature verification with gpgcheck=1 and repo_gpgcheck=1 in .repo files.
  • Restrict write access to repository cache directories so only privileged update processes can modify .solv files.
bash
# Configuration example: enforce signature verification in DNF repo files
# /etc/yum.repos.d/example.repo
[example]
name=Example Repository
baseurl=https://repo.example.com/path/
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://repo.example.com/RPM-GPG-KEY-example

# Clear potentially malicious cached .solv files
sudo dnf clean all
sudo dnf makecache

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLibsolv

  • SeverityMEDIUM

  • CVSS Score6.5

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

  • Red Hat Bugzilla Report

  • GitHub Pull Request for libsolv
  • Related CVEs
  • CVE-2026-48864: libsolv Buffer Overflow Vulnerability

  • CVE-2026-9150: libsolv Buffer Overflow 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