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-2025-47910

CVE-2025-47910: HTTP CrossOrigin Auth Bypass Vulnerability

CVE-2025-47910 is an authentication bypass flaw in http.CrossOriginProtection where AddInsecureBypassPattern bypasses more requests than intended, skipping security validation. This article covers technical details, impact, and mitigation.

Published: May 26, 2026

CVE-2025-47910 Overview

CVE-2025-47910 affects the Go standard library net/http package, specifically the CrossOriginProtection mechanism. When developers call AddInsecureBypassPattern to exempt specific endpoints from cross-origin checks, the method can bypass more requests than the developer intended. CrossOriginProtection skips validation but forwards the original request path, which a different handler may then serve without the intended security protections. The flaw weakens cross-site request forgery (CSRF) protections for Go-based HTTP services. The Go team disclosed the issue through the Go.dev Vulnerability Report GO-2025-3955 and published a fix referenced in the Google Groups Announcement.

Critical Impact

Attackers can route cross-origin requests to handlers expected to be protected by CrossOriginProtection, undermining CSRF defenses with low complexity and no authentication required.

Affected Products

  • Go standard library net/http package
  • Applications using http.CrossOriginProtection with AddInsecureBypassPattern
  • Go versions prior to the fixed releases referenced in GO-2025-3955

Discovery Timeline

  • 2025-09-22 - CVE-2025-47910 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-47910

Vulnerability Analysis

The Go net/http package introduced CrossOriginProtection to mitigate CSRF and other cross-origin attacks against HTTP handlers. The mechanism validates requests based on Origin and Sec-Fetch-Site headers before passing them to the underlying handler. Developers can call AddInsecureBypassPattern to opt specific URL patterns out of validation, typically for endpoints that intentionally accept unauthenticated cross-origin traffic.

The vulnerability arises because pattern matching for the bypass list does not align precisely with how the request path is later dispatched. When a request matches a bypass pattern, CrossOriginProtection skips its checks and forwards the original, unmodified request path downstream. A different handler, registered for a path that overlaps or extends the bypass pattern, can then process the request without cross-origin enforcement. This produces a broken access control condition affecting applications that rely on the protection.

Root Cause

The root cause is a mismatch between the path-matching semantics used by AddInsecureBypassPattern and those used by the application's request multiplexer. Patterns intended to exempt narrow endpoints can match a broader set of request paths, leaving downstream handlers exposed. The Go team's fix, published in the Go.dev Code Review CL 699275, corrects the bypass evaluation so that only the intended handler is exempted.

Attack Vector

Exploitation requires an attacker to lure an authenticated user into visiting a malicious page that issues a cross-origin request to a vulnerable Go service. User interaction is required, and no privileges are needed on the target service. The attacker crafts a request path that matches a configured insecure bypass pattern but is ultimately routed to a sensitive handler. Because CrossOriginProtection has already cleared the request, the sensitive handler executes without cross-origin checks. Refer to the Go.dev Issue Tracker entry for technical discussion of the routing edge case.

Detection Methods for CVE-2025-47910

Indicators of Compromise

  • Unexpected state-changing requests to sensitive endpoints originating from cross-origin referers or with mismatched Origin headers
  • HTTP access logs showing requests to bypass-pattern paths followed by internal dispatch to handlers not intended to be exempt
  • Successful POST, PUT, or DELETE operations from browsers without same-origin context

Detection Strategies

  • Audit application source for all calls to http.CrossOriginProtection.AddInsecureBypassPattern and verify that exempted patterns align exactly with intended handlers.
  • Use Go's vulnerability scanner govulncheck to flag binaries linked against vulnerable Go releases listed in GO-2025-3955.
  • Inspect web server and reverse proxy logs for cross-origin requests reaching handlers that should require same-origin enforcement.

Monitoring Recommendations

  • Forward Go application HTTP logs to a centralized analytics platform and alert on cross-origin write requests to authenticated endpoints.
  • Track deployment inventory of Go runtime versions across services and flag any builds older than the patched releases.
  • Add integration tests that issue cross-origin requests to bypass-pattern paths and assert that adjacent sensitive handlers reject them.

How to Mitigate CVE-2025-47910

Immediate Actions Required

  • Upgrade all Go services to a Go release that includes the fix referenced in GO-2025-3955 and rebuild affected binaries.
  • Review every AddInsecureBypassPattern call and remove patterns that are not strictly required.
  • Restrict bypass patterns to the narrowest possible path expressions and avoid wildcards that can collide with sensitive routes.

Patch Information

The Go team published the fix in CL 699275 and announced patched releases through the golang-announce mailing list. Rebuild and redeploy any application that imports net/http after upgrading the Go toolchain. Container images and statically linked binaries must be rebuilt because the vulnerable code is compiled into each binary.

Workarounds

  • Remove all calls to AddInsecureBypassPattern and instead implement per-handler CSRF protections using tokens or SameSite cookies.
  • Place exempted endpoints under a dedicated path prefix served by a separate ServeMux so bypass patterns cannot match unrelated handlers.
  • Add an additional middleware that re-validates Origin and Sec-Fetch-Site headers on sensitive handlers regardless of CrossOriginProtection status.
bash
# Upgrade the Go toolchain and rebuild affected services
go install golang.org/dl/go1.x.y@latest
go1.x.y download
go1.x.y build ./...
govulncheck ./...

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • Technical References
  • Go.dev Code Review

  • Go.dev Issue Tracker

  • Google Groups Announcement

  • Go.dev Vulnerability Report
  • Latest CVEs
  • CVE-2026-9813: FlowIntel SSRF Vulnerability

  • CVE-2026-4377: D-Link DWR-X1820 Auth Bypass Vulnerability

  • CVE-2026-47074: ex_aws_sns Auth Bypass Vulnerability

  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability
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