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
    • 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-22870

CVE-2025-22870: IPv6 Zone ID Information Disclosure Flaw

CVE-2025-22870 is an information disclosure vulnerability in proxy pattern matching affecting IPv6 zone ID handling. Attackers can bypass proxy settings by exploiting improper hostname matching. This article covers technical details, affected systems, impact analysis, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-22870 Overview

CVE-2025-22870 is an input validation vulnerability in Go's networking libraries where matching of hosts against proxy patterns can improperly treat an IPv6 zone ID as a hostname component. This flaw allows attackers to bypass proxy configurations by crafting malicious IPv6 addresses with specially formatted zone IDs that incorrectly match against proxy exclusion patterns.

For example, when the NO_PROXY environment variable is set to *.example.com, a request to [::1%25.example.com]:80 will incorrectly match and not be proxied, potentially allowing network traffic to bypass intended security controls.

Critical Impact

Applications relying on proxy configurations for security controls may have those controls bypassed, potentially exposing internal network traffic or allowing unauthorized access to protected resources.

Affected Products

  • Go programming language networking libraries
  • Applications using Go's net/http proxy handling
  • NetApp products (per security advisory)

Discovery Timeline

  • 2025-03-12 - CVE CVE-2025-22870 published to NVD
  • 2025-05-09 - Last updated in NVD database

Technical Details for CVE-2025-22870

Vulnerability Analysis

This vulnerability stems from improper parsing of IPv6 addresses containing zone identifiers (also known as scope IDs). In IPv6 addressing, a zone ID is appended to an address using the % character to specify the network interface for link-local addresses. The vulnerability occurs because Go's proxy pattern matching logic fails to properly isolate the zone ID from the hostname pattern matching process.

When evaluating whether a request should bypass the proxy based on NO_PROXY or similar environment variables, the affected code incorrectly parses the zone ID portion of an IPv6 address. An attacker can craft an IPv6 address where the zone ID contains characters that match against proxy exclusion patterns, causing the request to bypass proxy settings when it should not.

The vulnerability is classified under CWE-115 (Misinterpretation of Input), as the core issue involves the system incorrectly interpreting the zone ID component of an IPv6 address as part of the hostname for pattern matching purposes.

Root Cause

The root cause lies in the host matching logic within Go's networking stack. When processing IPv6 addresses with zone IDs (denoted by % in the address), the parsing routine fails to properly separate the zone ID from the actual address before performing pattern matching against proxy configuration rules. This allows specially crafted zone IDs like %25.example.com (where %25 is URL-encoded %) to be treated as part of the hostname, incorrectly matching against wildcard patterns like *.example.com.

Attack Vector

This is a local attack vector that requires the attacker to control or influence the destination addresses used by an application. The attack exploits the proxy bypass logic by:

  1. Crafting an IPv6 address with a zone ID that contains the target domain pattern
  2. Making requests to this crafted address from an application that uses Go's networking libraries
  3. The malformed zone ID causes the request to match against NO_PROXY patterns
  4. Traffic that should be proxied is sent directly, bypassing security controls

The practical impact allows local attackers with the ability to influence network requests to bypass proxy-based security controls, potentially exposing sensitive traffic or accessing resources that should only be reachable through a proxy.

Detection Methods for CVE-2025-22870

Indicators of Compromise

  • Network logs showing direct connections that should have been proxied
  • IPv6 addresses with unusual zone ID patterns containing domain-like strings (e.g., %25.example.com)
  • Applications making outbound connections that bypass configured proxy settings
  • Unexpected direct network traffic from applications configured to use proxies

Detection Strategies

  • Monitor network traffic for IPv6 connections with malformed or suspicious zone IDs
  • Implement network-level logging to detect proxy bypass attempts
  • Review application logs for requests to IPv6 addresses containing encoded characters in zone IDs
  • Deploy network monitoring to identify traffic that bypasses expected proxy paths

Monitoring Recommendations

  • Enable verbose logging on proxy servers to detect requests that should have been proxied but were not
  • Implement egress filtering to ensure applications cannot bypass proxy configurations at the network level
  • Monitor Go applications for updates to patched versions
  • Review application configurations for proper proxy enforcement

How to Mitigate CVE-2025-22870

Immediate Actions Required

  • Update Go to a patched version that addresses this vulnerability
  • Review applications using Go's networking libraries and schedule updates
  • Implement network-level controls to enforce proxy usage regardless of application behavior
  • Audit proxy bypass configurations and tighten NO_PROXY patterns where possible

Patch Information

The Go development team has addressed this vulnerability. Detailed patch information is available in the Go.dev Change Log Entry. Additional context is provided in the Go.dev Issue Tracker Entry and the official Go.dev Vulnerability Report.

For NetApp products, refer to the NetApp Security Advisory for product-specific guidance.

Workarounds

  • Implement strict network-level firewall rules to enforce proxy usage
  • Use network segmentation to prevent direct outbound connections from applications
  • Validate and sanitize IPv6 addresses at the application level before making requests
  • Consider using an external proxy enforcement mechanism that does not rely on application-level configuration
bash
# Configuration example - Enforce proxy at network level
# Block direct outbound connections and force all traffic through proxy
iptables -A OUTPUT -p tcp --dport 80 -j REJECT
iptables -A OUTPUT -p tcp --dport 443 -j REJECT
# Allow connections only to proxy server
iptables -A OUTPUT -p tcp -d <proxy_ip> --dport <proxy_port> -j ACCEPT

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score4.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-115
  • Technical References
  • Go.dev Change Log Entry

  • Go.dev Issue Tracker Entry

  • Go.dev Vulnerability Report

  • Openwall OSS Security Mailing List

  • NetApp Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs 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