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-2023-49568

CVE-2023-49568: Go-git DoS Vulnerability

CVE-2023-49568 is a denial of service vulnerability in Go-git that allows attackers to exhaust resources via specially crafted Git server responses. This article covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-49568 Overview

A denial of service (DoS) vulnerability was discovered in go-git versions prior to v5.11. This vulnerability allows an attacker to perform denial of service attacks by providing specially crafted responses from a Git server which triggers resource exhaustion in go-git clients.

Applications using only the in-memory filesystem supported by go-git are not affected by this vulnerability. This is a go-git implementation issue and does not affect the upstream git CLI.

Critical Impact

Attackers can exploit this vulnerability to cause resource exhaustion in applications using go-git, leading to denial of service conditions that may impact availability of dependent services and infrastructure.

Affected Products

  • go-git versions prior to v5.11
  • Applications using go-git with file system operations (non-memory filesystem implementations)
  • Go applications integrating go-git library for Git operations

Discovery Timeline

  • 2024-01-12 - CVE-2023-49568 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-49568

Vulnerability Analysis

This vulnerability is classified under CWE-20 (Improper Input Validation). The go-git library fails to properly validate and limit responses received from Git servers. When a go-git client communicates with a malicious or compromised Git server, the server can send specially crafted responses designed to trigger excessive resource consumption on the client side.

The resource exhaustion occurs because go-git does not implement adequate safeguards to limit the size or complexity of data processed from server responses. This allows an attacker controlling a Git server to cause client applications to consume excessive memory or CPU resources, ultimately leading to service degradation or complete denial of service.

It's important to note that applications using only the in-memory filesystem provided by go-git are not vulnerable to this attack, as the resource exhaustion specifically affects file system operations.

Root Cause

The root cause of this vulnerability lies in improper input validation within the go-git library when processing responses from Git servers. The library does not adequately validate the bounds or structure of server-provided data before processing, allowing malformed or excessively large responses to consume unbounded resources on the client.

Attack Vector

The attack vector for CVE-2023-49568 is network-based. An attacker must control or compromise a Git server that a vulnerable go-git client connects to. The attack scenario typically involves:

  1. Setting up a malicious Git server or compromising an existing one
  2. Waiting for or inducing a victim's go-git client to connect to the server
  3. Sending specially crafted responses that trigger resource exhaustion
  4. The client application experiences memory or CPU exhaustion, leading to denial of service

This vulnerability does not require authentication or user interaction, making it exploitable against any go-git client that can be directed to communicate with a malicious server.

Detection Methods for CVE-2023-49568

Indicators of Compromise

  • Abnormal memory consumption spikes in applications using go-git
  • Unusual network traffic patterns to Git servers with large response payloads
  • Application crashes or timeouts during Git operations
  • Resource exhaustion alerts on systems running go-git dependent applications

Detection Strategies

  • Monitor memory and CPU utilization for applications using go-git library
  • Implement network monitoring to detect abnormally large Git protocol responses
  • Set up application-level logging for Git operations to identify unusual patterns
  • Deploy dependency scanning to identify vulnerable go-git versions in your codebase

Monitoring Recommendations

  • Configure resource limits and alerts for go-git dependent services
  • Implement request/response size monitoring for Git network traffic
  • Enable detailed logging for Git client operations in production environments
  • Use SentinelOne Singularity Platform to detect unusual resource consumption patterns indicative of DoS attacks

How to Mitigate CVE-2023-49568

Immediate Actions Required

  • Upgrade go-git to version v5.11 or later immediately
  • Audit all applications and dependencies using go-git library
  • Consider implementing resource limits at the application or container level as a temporary safeguard
  • Review and restrict which Git servers your applications are permitted to connect to

Patch Information

The go-git project has addressed this vulnerability in version v5.11 and later. Organizations should update their go-git dependency to the patched version as soon as possible. For detailed information about the fix, refer to the GitHub Security Advisory GHSA-mw99-9chc-xw7r.

Workarounds

  • Use only the in-memory filesystem implementation of go-git where possible, as this configuration is not affected
  • Implement network-level controls to restrict connections to trusted Git servers only
  • Deploy resource quotas and limits on containers or processes running go-git applications
  • Consider using the upstream git CLI for operations requiring interaction with untrusted servers until patching is complete
bash
# Update go-git dependency to patched version
go get github.com/go-git/go-git/v5@v5.11.0
go mod tidy

# Verify the updated version
go list -m github.com/go-git/go-git/v5

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGo Git

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-20

  • NVD-CWE-noinfo
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34165: Go-git DoS Vulnerability

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

  • CVE-2023-49569: Go-git Path Traversal 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