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-2025-15570

CVE-2025-15570: lrzip Use After Free Vulnerability

CVE-2025-15570 is a use after free vulnerability in lrzip up to version 0.651 affecting the lzma_decompress_buf function in stream.c. This article covers technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2025-15570 Overview

A use after free vulnerability has been discovered in ckolivas lrzip, a compression utility, affecting versions up to 0.651. The vulnerability exists in the lzma_decompress_buf function within the stream.c file. When exploited, this memory corruption flaw can allow an attacker with local access to potentially corrupt memory, leading to application crashes or unexpected behavior.

Critical Impact

Local attackers can exploit this use after free vulnerability in lrzip's LZMA decompression functionality to cause memory corruption, potentially leading to denial of service or code execution.

Affected Products

  • lrzip versions up to 0.651
  • Systems utilizing lrzip for file compression/decompression operations

Discovery Timeline

  • 2026-02-10 - CVE-2025-15570 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2025-15570

Vulnerability Analysis

This vulnerability is classified as CWE-119 (Improper Restriction of Operations within the Bounds of a Memory Buffer), manifesting specifically as a use after free condition. The flaw occurs during LZMA decompression operations in lrzip when the lzma_decompress_buf function in stream.c improperly handles memory that has already been freed.

Use after free vulnerabilities occur when a program continues to reference memory after it has been returned to the allocator. In this case, the decompression routine appears to maintain pointers to buffer memory that may be deallocated during certain decompression paths, creating a dangling pointer scenario. When this memory is subsequently accessed, it may contain arbitrary data, leading to undefined behavior.

The vulnerability requires local access to exploit, meaning an attacker would need to provide a maliciously crafted compressed file to a system running the vulnerable lrzip version. A proof of concept has been publicly disclosed, increasing the risk of exploitation attempts.

Root Cause

The root cause lies in improper memory lifecycle management within the lzma_decompress_buf function. The function fails to properly track buffer allocation states during decompression operations, resulting in references to memory regions that have already been freed. This creates a use after free condition when the code attempts to operate on the invalidated memory reference.

Attack Vector

The attack requires local access to the target system. An attacker would need to:

  1. Craft a malicious compressed file designed to trigger the use after free condition during decompression
  2. Convince a user or automated process to decompress the malicious file using lrzip
  3. Exploit the resulting memory corruption to achieve their objective

The vulnerability has been publicly documented through GitHub Issue #262, and a proof of concept file demonstrating the vulnerability is available. The project maintainers were informed of the issue but have not yet responded.

Detection Methods for CVE-2025-15570

Indicators of Compromise

  • Unexpected crashes or segmentation faults when running lrzip decompression operations
  • Memory corruption errors or heap corruption warnings in system logs
  • Abnormal memory access patterns detected by runtime sanitizers
  • Presence of unusually structured or malformed .lrz compressed files

Detection Strategies

  • Deploy memory safety tools such as AddressSanitizer (ASan) when running lrzip in testing environments to detect use after free conditions
  • Monitor for lrzip process crashes or abnormal terminations on systems processing untrusted compressed files
  • Implement file integrity monitoring for any .lrz files arriving from external sources
  • Use SentinelOne's behavioral AI to detect anomalous memory access patterns indicative of exploitation attempts

Monitoring Recommendations

  • Enable core dump analysis for lrzip processes to identify exploitation attempts
  • Implement application crash monitoring for systems that regularly use lrzip for decompression tasks
  • Monitor file system activity for suspicious .lrz files, particularly those from untrusted sources
  • Review system logs for memory-related errors associated with lrzip operations

How to Mitigate CVE-2025-15570

Immediate Actions Required

  • Assess systems to determine if lrzip version 0.651 or earlier is installed
  • Avoid decompressing files from untrusted or unknown sources using vulnerable lrzip versions
  • Consider temporarily disabling or removing lrzip until a patch becomes available
  • Implement network segmentation to limit the potential impact of local exploitation
  • Monitor the lrzip GitHub repository for security updates

Patch Information

As of the last update, no official patch has been released by the project maintainers. The vulnerability was reported through GitHub Issue #262, but the project has not yet responded to the disclosure. Users should monitor the official repository for updates and apply patches as soon as they become available.

Workarounds

  • Use alternative compression tools such as xz, gzip, or bzip2 for decompression tasks until a fix is available
  • Implement strict file validation and sandboxing when processing compressed files from untrusted sources
  • Run lrzip in a containerized or isolated environment to limit the impact of potential exploitation
  • Apply operating system-level memory protections such as ASLR and stack canaries to reduce exploitability
bash
# Check installed lrzip version
lrzip -V

# Alternative: Use xz for LZMA decompression as a temporary workaround
xz -d filename.xz

# Run lrzip in a sandboxed environment using firejail
firejail --private lrzip -d untrusted_file.lrz

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/TechCkolivas Lrzip

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-119
  • Technical References
  • GitHub lrzip Repository

  • GitHub Issue #262

  • GitHub PoC File

  • VulDB CTI #344926

  • VulDB #344926

  • VulDB Submission #752595
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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