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-2024-28110

CVE-2024-28110: CloudEvents Go SDK Credential Leak Flaw

CVE-2024-28110 is an information disclosure vulnerability in CloudEvents Go SDK that causes credential leakage to arbitrary endpoints when using authenticated transports. This article covers technical details, affected versions, and patches.

Published: June 2, 2026

CVE-2024-28110 Overview

CVE-2024-28110 affects the Go SDK for CloudEvents, the official library for integrating Go applications with CloudEvents. Versions prior to 2.15.2 leak authentication credentials when developers use cloudevents.WithRoundTripper to construct a cloudevents.Client with an authenticated http.RoundTripper. The SDK modifies http.DefaultClient with the authenticated transport, causing Authorization tokens to be sent to arbitrary endpoints contacted by the default client process-wide. This weakness is classified under [CWE-522: Insufficiently Protected Credentials]. Version 2.15.2 patches the issue by allocating a dedicated http.Client instead of mutating the default one.

Critical Impact

Authenticated bearer tokens and credentials configured for one CloudEvents endpoint can be transmitted to any arbitrary host contacted using http.DefaultClient, enabling credential theft by unrelated services.

Affected Products

  • CloudEvents Go SDK (cloudevents:go_sdk) versions prior to 2.15.2
  • Go applications using cloudevents.WithRoundTripper with authenticated transports
  • Services that share the process-wide http.DefaultClient with the CloudEvents client

Discovery Timeline

  • 2024-03-06 - CVE-2024-28110 published to the National Vulnerability Database (NVD)
  • 2025-12-04 - Last updated in NVD database

Technical Details for CVE-2024-28110

Vulnerability Analysis

The Go SDK for CloudEvents constructs an HTTP protocol handler in v2/protocol/http/protocol.go. When a caller passes an authenticated http.RoundTripper via the cloudevents.WithRoundTripper option, the SDK assigns the transport directly onto http.DefaultClient. Because http.DefaultClient is a package-level singleton in Go's standard library, this mutation affects every caller in the process that uses the default client.

Any subsequent outbound HTTP request issued through http.DefaultClient — including requests made by unrelated libraries, telemetry SDKs, or application code — will use the authenticated transport. If that transport injects an Authorization header, the credential is sent to every destination, not just the CloudEvents broker the developer intended to authenticate against.

Root Cause

The defect stems from sharing mutable global state. The SDK relied on http.DefaultClient as a fallback HTTP client and then overwrote its Transport field rather than constructing a private http.Client. This violates the Go convention that callers should never mutate the default client.

Attack Vector

An attacker who controls or observes any HTTP endpoint contacted by the victim process can harvest leaked bearer tokens, API keys, or signed headers from the Authorization header. The attack does not require code execution on the target host — it only requires that the vulnerable application be configured with a legitimate authenticated round-tripper and subsequently make outbound HTTP calls to attacker-reachable destinations.

go
 	}
 
 	if p.Client == nil {
-		p.Client = http.DefaultClient
+		// This is how http.DefaultClient is initialized. We do not just use
+		// that because when WithRoundTripper is used, it will change the client's
+		// transport, which would cause that transport to be used process-wide.
+		p.Client = &http.Client{}
 	}
 
 	if p.roundTripper != nil {

Source: GitHub commit de2f283. The patch replaces the assignment to http.DefaultClient with a freshly allocated &http.Client{}, isolating transport mutations to the CloudEvents protocol instance.

Detection Methods for CVE-2024-28110

Indicators of Compromise

  • Outbound HTTP requests from a Go service carrying Authorization headers to hosts other than the configured CloudEvents broker
  • Application dependency manifests (go.mod, go.sum) referencing github.com/cloudevents/sdk-go at versions earlier than 2.15.2
  • Unexpected authentication attempts logged by third-party APIs that share the process with a CloudEvents producer

Detection Strategies

  • Scan source repositories and built binaries for the cloudevents/sdk-go module at versions below 2.15.2
  • Inspect runtime telemetry for outbound TLS connections from CloudEvents-producing services to unexpected domains
  • Audit code for use of cloudevents.WithRoundTripper paired with transports that attach credentials

Monitoring Recommendations

  • Capture egress proxy logs and alert on Authorization header presence on requests to non-allowlisted destinations
  • Use software composition analysis (SCA) in CI pipelines to fail builds that pin vulnerable sdk-go versions
  • Rotate any bearer tokens or API keys that may have been routed through the affected client

How to Mitigate CVE-2024-28110

Immediate Actions Required

  • Upgrade github.com/cloudevents/sdk-go/v2 to version 2.15.2 or later in all Go applications
  • Identify any callers using cloudevents.WithRoundTripper with authenticated transports and review historical egress for credential exposure
  • Rotate credentials embedded in round-trippers if outbound traffic logs cannot rule out leakage

Patch Information

The fix is available in CloudEvents Go SDK 2.15.2. Refer to the GitHub Security Advisory GHSA-5pf6-2qwx-pxm2 and the upstream commit de2f283 for full details. The patch allocates a dedicated http.Client rather than mutating http.DefaultClient.

Workarounds

  • Pass an explicit *http.Client to the CloudEvents protocol constructor instead of relying on the default client
  • Avoid attaching Authorization headers inside a RoundTripper; inject them per-request through context-aware middleware that validates the destination host
  • Pin cloudevents/sdk-go to a patched version using Go module replace directives until full upgrades are completed
bash
# Update the CloudEvents Go SDK to the patched release
go get github.com/cloudevents/sdk-go/v2@v2.15.2
go mod tidy

# Verify the resolved version
go list -m github.com/cloudevents/sdk-go/v2

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCloudevents Go Sdk

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-522
  • Technical References
  • GitHub Code Snippet
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi Flaw
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