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-2026-42508

CVE-2026-42508: Golang Crypto Auth Bypass Vulnerability

CVE-2026-42508 is an authentication bypass flaw in Golang Crypto where revoked SignatureKeys were not properly validated. This post covers the technical details, affected versions, security impact, and mitigation.

Published: May 28, 2026

CVE-2026-42508 Overview

CVE-2026-42508 is a certificate validation flaw in the golang.org/x/crypto module. The library failed to check the revocation status of a Certificate Authority's SignatureKey during certificate chain validation. Only the primary key field was inspected for the @revoked attribute, allowing a revoked CA signing key to remain trusted. An attacker positioned to present certificates signed by a revoked CA key could bypass revocation enforcement over the network. The fix verifies both key and key.SignatureKey for the @revoked marker. The issue is tracked upstream as GO-2026-5021 and maps to [CWE-295] Improper Certificate Validation.

Critical Impact

Applications relying on golang.org/x/crypto may accept certificates signed by a revoked CA key, undermining trust decisions across TLS, SSH, and OpenPGP workflows.

Affected Products

  • Golang Crypto module (golang.org/x/crypto)
  • Applications consuming golang:crypto for certificate or key validation
  • Go services performing OpenPGP or X.509 chain verification using the affected package

Discovery Timeline

  • 2026-05-22 - CVE-2026-42508 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-42508

Vulnerability Analysis

The vulnerability resides in the revocation-checking logic of the golang.org/x/crypto package. When validating a key associated with a Certificate Authority, the code inspected only the top-level key object for a @revoked self-signature. It did not recurse into the key.SignatureKey field, which represents the CA's signing key. A CA can rotate or revoke its signing subkey while retaining the primary key. Without checking the SignatureKey, the library silently treated signatures produced by a revoked subkey as valid. The corrected logic now evaluates revocation status on both key and key.SignatureKey before accepting a signature.

Root Cause

The root cause is incomplete enforcement of the OpenPGP revocation model. The validation path examined a single object field rather than walking the full set of keys participating in a signature. This is a classic [CWE-295] Improper Certificate Validation pattern, where partial trust checks create an exploitable gap.

Attack Vector

An attacker who controls a previously trusted CA key that has since been revoked can sign arbitrary data or certificates. A Go application using the affected library will accept those signatures as authentic. The flaw is exploitable over the network without authentication or user interaction, making it relevant to TLS clients, package verification tooling, and update mechanisms that depend on golang.org/x/crypto.

No verified public exploitation code is available. Refer to the upstream Go.dev change list 781220 and Go.dev issue 79568 for the technical fix and discussion.

Detection Methods for CVE-2026-42508

Indicators of Compromise

  • Successful signature verification events involving CA keys whose SignatureKey was previously published as revoked
  • Acceptance of certificates or signed artifacts whose signing subkey appears on revocation lists maintained internally or by upstream PKI
  • Build pipelines or update clients written in Go that pull artifacts signed by historically revoked CA keys

Detection Strategies

  • Inventory all Go binaries and services that import golang.org/x/crypto and compare module versions against the fixed release referenced in GO-2026-5021
  • Run govulncheck across source trees and build artifacts to flag transitive dependencies still pinned to vulnerable versions
  • Correlate certificate chain validation logs with known revoked CA subkey fingerprints to surface acceptance anomalies

Monitoring Recommendations

  • Alert on TLS or OpenPGP verifications that succeed against keys present in internal revocation databases
  • Track Go module updates in CI/CD systems and fail builds that resolve to vulnerable golang.org/x/crypto versions
  • Monitor outbound connections from Go services to endpoints presenting certificates chained to historically revoked authorities

How to Mitigate CVE-2026-42508

Immediate Actions Required

  • Upgrade golang.org/x/crypto to the fixed version identified in the GO-2026-5021 advisory
  • Rebuild and redeploy all Go services and CLI tools that link the affected module, including statically compiled binaries
  • Re-run signature and certificate verifications on artifacts accepted within the exposure window to detect any that relied on revoked CA subkeys

Patch Information

The upstream fix adds revocation checks for both key and key.SignatureKey. See the patch in Go.dev change list 781220, the discussion in Go.dev issue 79568, and the release announcement on the golang-announce mailing list.

Workarounds

  • Where upgrading is not immediately possible, enforce out-of-band revocation checks against an authoritative list before trusting CA-signed material
  • Constrain trusted CA key fingerprints to a curated allow list that excludes any keys whose SignatureKey has been revoked
  • Pin known-good signing keys in application configuration and reject signatures from any key not on the pinned set
bash
# Update the vulnerable module to the fixed release
go get golang.org/x/crypto@latest
go mod tidy

# Verify no vulnerable versions remain in the dependency graph
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/TechGolang

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-295
  • Technical References
  • Go.dev Cl #781220

  • Go.dev Issue #79568

  • Golang Announce Group Post
  • Vendor Resources
  • Go.dev Vulnerability Report GO-2026-5021
  • Related CVEs
  • CVE-2026-39832: Golang Crypto Auth Bypass Vulnerability

  • CVE-2025-68121: Golang Go Auth Bypass Vulnerability

  • CVE-2024-45337: Go SSH Library Auth Bypass Vulnerability

  • CVE-2022-23773: Golang Go Auth Bypass 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