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

CVE-2024-45341: PKI Certificate Information Disclosure

CVE-2024-45341 is an information disclosure flaw in PKI certificate validation involving IPv6 URIs with zone IDs that bypass name constraints. This post covers the technical details, affected systems, and mitigation.

Published: January 28, 2026

CVE-2024-45341 Overview

CVE-2024-45341 is a certificate validation bypass vulnerability in the Go programming language's certificate handling functionality. A certificate with a URI containing an IPv6 address with a zone ID may incorrectly satisfy a URI name constraint that applies to the certificate chain. This flaw allows certificates to pass validation when they should be rejected based on the configured name constraints.

Critical Impact

Private PKI implementations using URI-based name constraints may accept certificates that should be rejected, potentially allowing unauthorized entities to present certificates that bypass intended access controls.

Affected Products

  • Go programming language (crypto/x509 package)
  • Applications built with Go that utilize private PKI with URI name constraints
  • NetApp products utilizing affected Go versions

Discovery Timeline

  • January 28, 2025 - CVE-2024-45341 published to NVD
  • February 21, 2025 - Last updated in NVD database

Technical Details for CVE-2024-45341

Vulnerability Analysis

This vulnerability exists in Go's certificate validation logic, specifically in how URI name constraints are processed when the URI contains an IPv6 address with a zone identifier. In IPv6 addressing, a zone ID (also known as a scope ID) is appended to link-local addresses using the % character to specify the network interface. When parsing and validating certificates against name constraints, the Go crypto/x509 package fails to properly handle this zone ID component, leading to incorrect constraint matching.

The issue is limited in scope to private PKI deployments that utilize URI-based name constraints. Certificates containing URIs are not permitted in the web PKI (public certificate authorities), which means this vulnerability does not affect standard HTTPS/TLS connections to public websites. However, organizations running private certificate infrastructures that leverage URI constraints for access control or service identification may be impacted.

Root Cause

The root cause lies in the parsing logic within Go's crypto/x509 package when evaluating URI name constraints. The zone ID portion of an IPv6 address in a URI is not properly normalized or stripped during the constraint matching process. This causes the validation routine to incorrectly determine that a certificate satisfies a URI name constraint when the zone ID creates an unintended match or allows the constraint check to be bypassed entirely.

Attack Vector

An attacker could exploit this vulnerability by crafting a certificate with a URI containing an IPv6 address with a specially crafted zone ID. When this certificate is presented to a Go application that validates certificates against URI name constraints, the malformed URI may incorrectly pass validation. This requires network access and user interaction to present the malicious certificate.

The attack scenario involves:

  1. An attacker obtains or generates a certificate with a URI containing an IPv6 address with a zone ID
  2. The certificate is presented during a TLS handshake or certificate validation process
  3. The Go application's name constraint validation incorrectly accepts the certificate
  4. The attacker gains unauthorized access or impersonates a legitimate service within the private PKI

For detailed technical information about the vulnerability mechanism and the fix, refer to the Go.dev Issue #71156 and Go.dev GoCL #643099.

Detection Methods for CVE-2024-45341

Indicators of Compromise

  • Certificates containing URIs with IPv6 addresses and zone IDs (e.g., uri://[fe80::1%25eth0]/resource)
  • Unexpected certificate validation successes in application logs where URI name constraints should have rejected certificates
  • Authentication or authorization events from previously unknown or unauthorized certificate subjects

Detection Strategies

  • Review application logs for certificate validation events involving URI-based certificates with IPv6 addresses
  • Implement certificate transparency monitoring for your private PKI to detect anomalous certificate issuance
  • Audit existing certificates in your private PKI for URIs containing IPv6 zone IDs
  • Use Go's vulnerability database tooling (govulncheck) to identify affected applications in your codebase

Monitoring Recommendations

  • Enable verbose logging for certificate validation in Go applications using private PKI
  • Monitor for authentication events from certificate subjects that should be constrained by URI name constraints
  • Set up alerts for certificate validation patterns involving IPv6 addresses in URIs
  • Regularly scan deployed Go binaries for vulnerable versions using software composition analysis tools

How to Mitigate CVE-2024-45341

Immediate Actions Required

  • Update Go to a patched version as indicated in the Go.dev Vulnerability Report GO-2025-3373
  • Rebuild and redeploy all Go applications that handle certificate validation with URI name constraints
  • Audit private PKI certificates for any containing URIs with IPv6 zone IDs
  • Review recent certificate validation logs for signs of exploitation

Patch Information

The Go team has released patches addressing this vulnerability. Detailed patch information is available in the Go.dev GoCL #643099. Organizations should update to the latest patched Go version and rebuild affected applications. NetApp has also issued guidance in their Security Advisory NTAP-20250221-0004.

Workarounds

  • Avoid using URI-based name constraints in private PKI configurations until systems can be patched
  • Implement additional certificate validation logic at the application layer to reject certificates with IPv6 zone IDs in URIs
  • Consider switching to alternative constraint types (such as DNS name constraints) that are not affected by this vulnerability
  • Restrict certificate issuance in your private CA to prevent certificates containing URIs with IPv6 addresses
bash
# Check Go version and scan for vulnerability
go version
govulncheck ./...

# Rebuild applications after updating Go
go build -o myapp ./cmd/myapp

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 Score6.1

  • EPSS Probability0.05%

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

  • Go.dev Issue #71156

  • Golang Dev Thread Discussion

  • Golang Dev Thread Discussion

  • Go.dev Vulnerability Report GO-2025-3373

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