Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-27117

CVE-2026-27117: Bit7z Path Traversal Vulnerability

CVE-2026-27117 is a path traversal flaw in Rikyoz Bit7z that allows attackers to write files outside intended directories. This article covers the technical details, affected versions, exploitation risks, and mitigation strategies.

Published: February 27, 2026

CVE-2026-27117 Overview

CVE-2026-27117 is a path traversal vulnerability, commonly known as "Zip Slip," affecting bit7z, a cross-platform C++ static library used for compression and extraction of archive files. The library does not adequately validate file paths contained in archive entries, allowing files to be written outside the intended extraction directory through three distinct attack mechanisms: relative path traversal, absolute path traversal, and symbolic link traversal.

An attacker can exploit this vulnerability by providing a malicious archive to any application that uses bit7z to extract untrusted archives. Successful exploitation results in arbitrary file write with the privileges of the process performing the extraction, potentially leading to overwriting of application binaries, configuration files, or other sensitive data.

Critical Impact

Arbitrary file write vulnerability allowing attackers to overwrite critical system files, application binaries, or configuration data through malicious archive extraction.

Affected Products

  • rikyoz bit7z versions prior to 4.0.11

Discovery Timeline

  • 2026-02-24 - CVE CVE-2026-27117 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2026-27117

Vulnerability Analysis

This path traversal vulnerability exists in bit7z's archive extraction functionality, specifically in how the library handles file paths extracted from archive entries. The vulnerability enables three distinct traversal mechanisms that bypass the intended extraction directory constraints:

  1. Relative Path Traversal: Archive entries containing sequences like ../ can escape the intended extraction directory by traversing up the directory tree.

  2. Absolute Path Traversal: Archive entries with absolute paths (e.g., /etc/passwd on Unix or C:\Windows\System32\config on Windows) can write files to arbitrary locations on the filesystem.

  3. Symbolic Link Traversal: Malicious archives can contain symbolic links that point to locations outside the extraction directory, which subsequent file writes can then exploit.

The vulnerability does not directly enable reading of file contents; however, applications that subsequently serve or display extracted files may face secondary confidentiality risks from attacker-created symlinks.

Root Cause

The root cause lies in insufficient validation and sanitization of file paths during the extraction process. Prior to version 4.0.11, the fileextractcallback.cpp component and related filesystem utilities (fsutil.cpp) did not apply proper path sanitization when extracting files and restoring symbolic links. The library trusted path information from archive entries without verifying that the resolved destination remained within the intended extraction boundary.

Attack Vector

An attacker exploits this vulnerability by crafting a malicious archive file containing entries with specially constructed paths. The attack requires no privileges and can be executed remotely by convincing a user or application to extract the malicious archive. The exploitation process involves:

  1. Creating an archive with entries containing path traversal sequences (e.g., ../../../../../../etc/cron.d/malicious)
  2. Distributing the malicious archive to a target application using bit7z
  3. When the application extracts the archive, files are written outside the intended directory
  4. The attacker achieves arbitrary file write with the privileges of the extracting process
cpp
// Security patch excerpt from fileextractcallback.cpp
// Before: Attributes set without path validation for symlinks
// filesystem::fsutil::set_file_attributes( mFilePathOnDisk, mCurrentItem.attributes() );

// After: Path sanitization applied through mOutPathBuilder
filesystem::fsutil::set_file_attributes( mOutPathBuilder, mFilePathOnDisk, mCurrentItem.attributes() );

Source: GitHub Commit 31763da

Detection Methods for CVE-2026-27117

Indicators of Compromise

  • Files appearing in unexpected system directories following archive extraction operations
  • Symbolic links created in extraction directories pointing to sensitive system paths
  • Modification timestamps on critical system files coinciding with archive extraction events
  • Application log entries showing file paths with ../ sequences during extraction

Detection Strategies

  • Monitor file system activity during archive extraction for writes outside expected directories
  • Implement application-level logging that captures full destination paths during extraction operations
  • Use file integrity monitoring (FIM) on critical directories to detect unauthorized modifications
  • Audit applications using bit7z versions prior to 4.0.11 across your environment

Monitoring Recommendations

  • Enable detailed logging on archive extraction operations in applications using bit7z
  • Configure endpoint detection to alert on directory traversal patterns in file paths
  • Monitor for creation of symbolic links in temporary or extraction directories
  • Review application behavior for unexpected file writes following archive processing

How to Mitigate CVE-2026-27117

Immediate Actions Required

  • Upgrade bit7z to version 4.0.11 or later immediately
  • Audit all applications using bit7z and prioritize those handling untrusted archives
  • Run extraction operations with least privilege principles applied
  • Extract untrusted archives in sandboxed or isolated directories

Patch Information

The vulnerability has been fixed in bit7z version 4.0.11. The security patches address path sanitization in both the file extraction callback mechanism and the filesystem utilities. Two primary commits implement the fix:

  • GitHub Commit 31763da - Applies path sanitization when restoring symbolic links
  • GitHub Commit 9e02048 - Fixes and improves extraction path sanitization

The official release is available at GitHub Release v4.0.11. For complete details, refer to the GitHub Security Advisory GHSA-qvjh-hhw4-3gx9.

Workarounds

  • Validate each entry's destination path before writing to ensure it remains within the intended extraction directory
  • Run extraction processes with least privilege using dedicated service accounts
  • Extract untrusted archives in a sandboxed directory with restricted permissions
  • Implement application-level path canonicalization before file writes
bash
# Example: Create isolated extraction environment with restricted permissions
mkdir -p /var/sandbox/extraction
chmod 700 /var/sandbox/extraction
chown extraction-svc:extraction-svc /var/sandbox/extraction

# Mount with noexec and nosuid for additional protection
mount --bind /var/sandbox/extraction /var/sandbox/extraction
mount -o remount,noexec,nosuid /var/sandbox/extraction

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechRikyoz Bit7z

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Release v4.0.11
  • Vendor Resources
  • GitHub Commit 31763da

  • GitHub Commit 9e02048

  • GitHub Security Advisory GHSA-qvjh-hhw4-3gx9
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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