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

CVE-2026-25934: go-git Data Integrity Vulnerability

CVE-2026-25934 is a data integrity flaw in go-git library where pack and index files are not properly verified, potentially causing corrupted file consumption. This article covers technical details, affected versions, and fixes.

Published: February 13, 2026

CVE-2026-25934 Overview

CVE-2026-25934 is a data integrity verification bypass vulnerability discovered in go-git, a highly extensible git implementation library written in pure Go. Prior to version 5.16.5, the library failed to properly verify data integrity values for .pack and .idx files, potentially allowing consumption of corrupted files which could lead to unexpected application behavior and errors such as "object not found."

When clients fetch packfiles from upstream Git servers, those files contain checksums of their contents to enable integrity verification before consumption. Additionally, pack indexes (.idx files) are generated locally by go-git or the git CLI when new .pack files are received and processed. This vulnerability stems from the improper verification of integrity checks for both file types.

Critical Impact

Applications using affected versions of go-git may process corrupted packfiles and index files without proper validation, potentially leading to data integrity issues, unexpected errors, and unreliable git operations.

Affected Products

  • go-git versions prior to 5.16.5
  • Applications and tools built with vulnerable go-git library versions
  • Development environments using go-git for Git operations

Discovery Timeline

  • 2026-02-09 - CVE CVE-2026-25934 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-25934

Vulnerability Analysis

This vulnerability is classified under CWE-354 (Improper Validation of Integrity Check Value), indicating a fundamental flaw in how go-git handles data integrity verification. The core issue lies in the library's failure to properly validate checksum values embedded within Git packfiles and their corresponding index files.

In the Git protocol, packfiles (.pack) serve as compressed archives containing multiple Git objects and include SHA-1 checksums for integrity verification. When these packfiles are received from remote repositories, clients should verify these checksums before processing the contents. Similarly, pack index files (.idx) are generated locally to provide efficient random access to objects within packfiles and also contain integrity checksums.

The vulnerability allows corrupted or tampered packfiles and index files to be processed without proper validation, which could manifest as seemingly random "object not found" errors or other unexpected behavior in applications relying on go-git for Git operations.

Root Cause

The root cause of CVE-2026-25934 is the improper implementation of integrity check validation routines within go-git. The checksum verification logic for both .pack and .idx files was not correctly implemented, resulting in a bypass of these critical data integrity controls.

This represents a deviation from the Git protocol's security model, which relies on SHA-1 checksums to ensure data has not been corrupted during transmission or storage. Without proper verification, the library cannot guarantee the integrity of Git objects it processes.

Attack Vector

The attack vector for this vulnerability is network-based, requiring user interaction. An attacker could potentially exploit this vulnerability through the following scenarios:

The most likely attack vector involves a malicious or compromised Git server serving corrupted packfiles to clients using go-git. Since the integrity checks are not properly verified, the client would accept and process these corrupted files without detecting the tampering.

Another scenario involves man-in-the-middle attacks where an attacker intercepts Git protocol traffic and modifies packfile contents in transit. Without proper integrity verification, these modifications would go undetected by the go-git client.

While direct exploitation for code execution is unlikely, the vulnerability could be leveraged to cause denial of service through corrupted data, introduce subtle data integrity issues, or potentially inject malicious Git objects into repositories managed by affected applications.

Detection Methods for CVE-2026-25934

Indicators of Compromise

  • Unexpected "object not found" errors in applications using go-git
  • Git repository corruption or inconsistencies after fetch operations
  • Unusual discrepancies between local and remote repository states
  • Application logs showing repeated failures during packfile processing

Detection Strategies

  • Audit application dependencies to identify go-git versions prior to 5.16.5
  • Monitor application logs for patterns of Git object resolution failures
  • Implement dependency scanning in CI/CD pipelines to flag vulnerable go-git versions
  • Compare checksums of locally cached packfiles against expected values from trusted sources

Monitoring Recommendations

  • Enable verbose logging for Git operations in applications using go-git
  • Set up alerts for unusual patterns of Git-related errors in production environments
  • Monitor for unexpected repository state changes or corruption reports
  • Track dependency versions across all applications to ensure timely updates

How to Mitigate CVE-2026-25934

Immediate Actions Required

  • Upgrade go-git to version 5.16.5 or later immediately
  • Review and rebuild applications that bundle go-git as a dependency
  • Verify integrity of existing repositories processed by affected versions
  • Consider re-cloning repositories to ensure data integrity after upgrading

Patch Information

The go-git maintainers have addressed this vulnerability in version 5.16.5. The fix implements proper verification of integrity checksums for both .pack and .idx files, ensuring that corrupted or tampered files are detected and rejected before processing.

For detailed information about the security fix, refer to the GitHub Security Advisory GHSA-37cx-329c-33x3 and the v5.16.5 release notes.

Workarounds

  • If immediate upgrade is not possible, consider implementing additional integrity checks at the application layer
  • Use the standard Git CLI for critical operations until go-git can be updated
  • Restrict network access to trusted Git servers only to reduce exposure to malicious packfiles
  • Implement network-level monitoring to detect potential man-in-the-middle attacks
bash
# Update go-git dependency to patched version
go get github.com/go-git/go-git/v5@v5.16.5

# Verify the updated version in your go.mod
grep go-git go.mod

# Rebuild your application with the updated dependency
go build ./...

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechGo Git

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-354
  • Technical References
  • GitHub Release v5.16.5

  • GitHub Security Advisory GHSA-37cx-329c-33x3
  • Related CVEs
  • CVE-2026-34165: Go-git DoS Vulnerability

  • CVE-2023-49569: Go-git Path Traversal Vulnerability

  • CVE-2023-49568: Go-git 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