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

CVE-2023-45289: HTTP Client Header Disclosure Vulnerability

CVE-2023-45289 is an information disclosure flaw in HTTP client redirect handling that may expose sensitive headers like Authorization or Cookie to unintended domains. This article covers technical details, impact, and mitigation.

Published: February 4, 2026

CVE-2023-45289 Overview

CVE-2023-45289 is a security vulnerability in the Go programming language's http.Client that involves improper handling of sensitive HTTP headers during redirect operations. When an HTTP client follows a redirect to a domain that is not a subdomain match or exact match of the initial domain, sensitive headers such as Authorization or Cookie should not be forwarded. However, a maliciously crafted HTTP redirect could cause these sensitive headers to be unexpectedly forwarded to unauthorized domains, potentially exposing authentication credentials or session tokens.

Critical Impact

Authentication credentials and session cookies may be leaked to malicious third-party domains through crafted HTTP redirects, enabling credential theft and session hijacking attacks.

Affected Products

  • Go programming language net/http package
  • Applications using Go's http.Client for HTTP requests with redirects
  • NetApp products (per security advisory)

Discovery Timeline

  • 2024-03-05 - CVE CVE-2023-45289 published to NVD
  • 2024-03-08 - Public disclosure via OpenWall OSS-Security mailing list
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-45289

Vulnerability Analysis

This vulnerability exists in Go's HTTP client redirect handling logic within the net/http package. The core issue involves the domain matching algorithm that determines when sensitive headers should be stripped during cross-domain redirects.

Under normal circumstances, Go's http.Client is designed to protect users by not forwarding sensitive headers like Authorization and Cookie when redirected to a different domain. For example, a redirect from foo.com to www.foo.com (a subdomain) would preserve these headers, while a redirect to bar.com (an unrelated domain) would strip them.

However, the vulnerability allows a maliciously crafted redirect URL to bypass this domain matching logic, causing sensitive headers to be forwarded to domains where they should not be sent. This creates a significant information disclosure risk where attackers controlling a malicious server could harvest authentication tokens, API keys, or session cookies from unsuspecting clients.

Root Cause

The root cause lies in the domain comparison logic used to determine subdomain relationships during redirect processing. The matching algorithm fails to properly validate certain edge cases in domain name comparisons, allowing an attacker to craft redirect URLs that appear to match the subdomain criteria when they actually point to different domains entirely.

Attack Vector

The attack requires a network-based approach where an attacker can influence HTTP redirects. The exploitation scenario involves:

  1. An attacker sets up a malicious server that issues specially crafted redirect responses
  2. A victim's Go application makes an HTTP request with sensitive headers to a legitimate or attacker-controlled initial endpoint
  3. The server responds with a redirect to an attacker-controlled domain using a crafted URL that bypasses the domain matching check
  4. The Go http.Client incorrectly determines the redirect target is a valid subdomain and forwards the sensitive Authorization or Cookie headers
  5. The attacker's server captures the leaked credentials

The attack is relatively straightforward to execute against vulnerable applications, requiring low privileges and no user interaction once the initial request is made.

Detection Methods for CVE-2023-45289

Indicators of Compromise

  • Unexpected HTTP requests containing Authorization or Cookie headers to untrusted external domains
  • Application logs showing redirects to suspicious or unfamiliar domains
  • Authentication tokens appearing in third-party server logs
  • Unusual session activity following HTTP redirect chains

Detection Strategies

  • Implement network monitoring to detect HTTP redirect chains that terminate at unexpected domains
  • Deploy application logging that captures full redirect chains including destination domains
  • Utilize SentinelOne's behavioral analysis to identify applications leaking credentials through abnormal HTTP patterns
  • Monitor for Go applications making authenticated requests that follow multi-hop redirects

Monitoring Recommendations

  • Enable verbose HTTP client logging in Go applications to track redirect behavior
  • Configure intrusion detection systems to alert on sensitive header values appearing in traffic to non-whitelisted domains
  • Implement SentinelOne endpoint protection to monitor process network behavior for credential leakage patterns
  • Review application traffic patterns for unexpected cross-domain redirects involving authenticated sessions

How to Mitigate CVE-2023-45289

Immediate Actions Required

  • Update Go installations to the patched version that addresses this vulnerability
  • Review and update all applications compiled with vulnerable Go versions
  • Implement explicit redirect validation in application code using custom CheckRedirect functions
  • Audit existing applications for sensitive header usage in HTTP client operations

Patch Information

The Go team has released patches to address this vulnerability. The fix is documented in the Go.dev Code Review and tracked in the Go.dev Issue Tracker. Organizations should update to the patched Go version and recompile affected applications. The official vulnerability report is available at the Go.dev Vulnerability Report.

NetApp has also released an advisory for affected products, available at the NetApp Security Advisory.

Workarounds

  • Implement a custom CheckRedirect function on http.Client that validates redirect targets and strips sensitive headers manually
  • Configure applications to disable automatic redirect following and handle redirects explicitly with header sanitization
  • Use application-level firewalls to block redirects to untrusted domains
  • Consider proxying HTTP requests through a service that enforces strict redirect policies
bash
# Example: Update Go and rebuild applications
# Check current Go version
go version

# Update Go to latest patched version (check go.dev for current release)
# After updating, rebuild all affected applications
go build -a ./...

# Verify the new binary is using updated runtime
go version -m ./your-application

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHttp Client

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.45%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • OpenWall OSS-Security Post

  • Go.dev Code Review

  • Go.dev Issue Tracker

  • Golang Announcement Group Post

  • Go.dev Vulnerability Report

  • NetApp Security Advisory
  • 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