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
    • 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-2026-27138

CVE-2026-27138: X.509 Certificate DoS Vulnerability

CVE-2026-27138 is a denial of service flaw in X.509 certificate verification that causes panics when certificates contain empty DNS names with excluded name constraints, crashing TLS applications and certificate validators.

Published: March 13, 2026

CVE-2026-27138 Overview

Certificate verification can panic when a certificate in the chain has an empty DNS name and another certificate in the chain has excluded name constraints. This can crash programs that are either directly verifying X.509 certificate chains, or those that use TLS. The vulnerability affects Go applications performing certificate validation, potentially causing denial of service conditions in security-critical TLS implementations.

Critical Impact

Applications using Go's X.509 certificate verification or TLS functionality can be crashed by a maliciously crafted certificate chain, leading to denial of service.

Affected Products

  • Go applications using crypto/x509 package for certificate verification
  • Go applications using TLS functionality
  • Services relying on X.509 certificate chain validation

Discovery Timeline

  • 2026-03-06 - CVE CVE-2026-27138 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-27138

Vulnerability Analysis

This vulnerability is a Denial of Service condition that manifests during X.509 certificate chain verification in the Go programming language. When a certificate chain contains a certificate with an empty DNS name in the Subject Alternative Name (SAN) extension, and another certificate in the chain includes excluded name constraints, the certificate verification logic enters an unexpected state that triggers a panic. This panic causes the entire Go application to crash, resulting in service unavailability.

The vulnerability requires network access to exploit and involves a degree of complexity since an attacker must construct a specific certificate chain and successfully present it during a TLS handshake or certificate verification operation. The impact is limited to availability—there is no compromise of confidentiality or integrity.

Root Cause

The root cause lies in the name constraints validation logic within Go's crypto/x509 package. When processing certificates, the verification code does not properly handle the edge case where a DNS name in a certificate's SAN extension is empty while also needing to check against excluded name constraints from another certificate in the chain. This results in an unhandled condition that causes a runtime panic rather than returning an appropriate error.

Attack Vector

An attacker can exploit this vulnerability through network-based attack vectors. The exploitation requires the attacker to present a specially crafted certificate chain to a vulnerable Go application during TLS negotiation or direct certificate verification. The attack does not require authentication or user interaction, but the complexity is elevated because the attacker needs to construct a valid-looking certificate chain with the specific combination of an empty DNS name and excluded name constraints.

The attacker would typically need to be in a position where the target application validates certificates they control, such as during mutual TLS authentication, certificate pinning bypass attempts, or scenarios where the application fetches and validates certificates from untrusted sources.

Detection Methods for CVE-2026-27138

Indicators of Compromise

  • Unexpected application crashes or restarts in Go-based services handling TLS connections
  • Panic messages in application logs referencing crypto/x509 certificate verification functions
  • Service availability interruptions coinciding with TLS handshake attempts from suspicious sources

Detection Strategies

  • Monitor application logs for Go panic stack traces mentioning certificate verification or name constraint checking
  • Implement health checks that can detect and report certificate verification failures
  • Deploy network monitoring to identify anomalous certificate chains being presented to services
  • Use runtime application self-protection (RASP) or crash dump analysis to identify the specific panic condition

Monitoring Recommendations

  • Enable verbose logging for TLS handshake events in production Go applications
  • Set up alerting for application crashes with certificate-related stack traces
  • Monitor service availability metrics for Go applications handling TLS connections
  • Implement automated restart and notification mechanisms for crashed services

How to Mitigate CVE-2026-27138

Immediate Actions Required

  • Identify all Go applications in your environment that perform X.509 certificate verification or use TLS
  • Update to a patched version of Go that addresses this vulnerability
  • Review certificate validation configurations and consider implementing additional input validation
  • Deploy monitoring to detect exploitation attempts before patches can be applied

Patch Information

The Go team has released patches to address this vulnerability. Users should update their Go installations to incorporate the fix. The patch is tracked in the Go Change List 752183. Additional information can be found in the Go Issue Tracker #77953 and the Go Vulnerability Report GO-2026-4600. The Go Announcement Group post provides official guidance on addressing this issue.

Workarounds

  • Implement certificate chain pre-validation to reject certificates with empty DNS names before passing them to Go's verification logic
  • Use application-level rate limiting and connection monitoring to identify and block potential attack sources
  • Deploy reverse proxies or load balancers that can perform certificate validation before requests reach vulnerable Go applications
  • Consider wrapping certificate verification calls in recovery mechanisms to prevent full application crashes
bash
# Update Go to the latest patched version
go install golang.org/dl/go1.XX.X@latest
go1.XX.X download

# Rebuild affected applications with updated Go version
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
  • TypeDOS

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Go.dev Release Note

  • Go.dev Issue Tracker

  • Go Announcement Group Post

  • Go.dev Vulnerability Report
  • 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