Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2022-30629

CVE-2022-30629: Golang Go Information Disclosure Flaw

CVE-2022-30629 is an information disclosure vulnerability in Golang Go's crypto/tls that allows attackers to correlate TLS connections. This article covers technical details, affected versions, impact, and mitigation.

Published: February 11, 2026

CVE-2022-30629 Overview

CVE-2022-30629 is a cryptographic vulnerability in Go's crypto/tls package that affects session ticket handling. The vulnerability stems from non-random values being used for the ticket_age_add field in TLS session tickets. This weakness allows an attacker who can observe TLS handshakes to correlate successive connections by comparing ticket ages during session resumption, potentially enabling user tracking and privacy violations.

Critical Impact

Attackers capable of passive network observation can track users across multiple TLS sessions by correlating predictable ticket age values, compromising user privacy and enabling traffic analysis attacks.

Affected Products

  • Golang Go versions prior to 1.17.11
  • Golang Go versions 1.18.x prior to 1.18.3

Discovery Timeline

  • August 10, 2022 - CVE-2022-30629 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-30629

Vulnerability Analysis

This vulnerability falls under CWE-330 (Use of Insufficiently Random Values). The TLS 1.3 specification requires that the ticket_age_add value in session tickets be generated using a cryptographically secure random number generator. This value is added to the ticket age reported by the client during session resumption to obfuscate the actual ticket age from passive observers.

In affected versions of Go's crypto/tls package, the ticket_age_add values were not sufficiently random. This predictability creates a side channel that allows attackers performing passive network surveillance to correlate TLS connections belonging to the same user. By observing the relationship between reported ticket ages across multiple session resumption attempts, an attacker can determine which connections belong to the same client session ticket, effectively tracking users across sessions.

The attack requires the ability to observe TLS handshakes and some user interaction to trigger session resumption, making exploitation complexity relatively high. However, for adversaries with network-level visibility (such as ISPs, network administrators, or state-level actors), this vulnerability provides a mechanism for tracking encrypted communications without breaking the encryption itself.

Root Cause

The root cause of CVE-2022-30629 is the improper generation of the ticket_age_add field in TLS session tickets within Go's crypto/tls implementation. Instead of using a cryptographically secure random number generator to produce unpredictable values, the affected code produced values with insufficient randomness. This violated the TLS 1.3 specification's requirement for random ticket_age_add values, which exist specifically to prevent the correlation attack this vulnerability enables.

Attack Vector

The attack vector for CVE-2022-30629 is network-based and requires the following conditions:

  1. Network Observation: The attacker must be able to passively observe TLS handshakes between the target client and server
  2. Session Resumption: The target must perform TLS session resumption using session tickets issued by the vulnerable Go server
  3. Multiple Connections: The attacker needs to observe multiple connections to correlate ticket ages

An attacker positioned to observe network traffic (man-in-the-middle position, network tap, or compromised network infrastructure) can collect TLS handshake data. By analyzing the ticket age values across multiple session resumptions, the attacker can identify which connections belong to the same user, enabling user tracking and potentially aiding more sophisticated attacks.

The vulnerability mechanism involves comparing the obfuscated ticket ages reported in session resumption handshakes. Because the obfuscation value (ticket_age_add) is predictable, the actual ticket age can be inferred, allowing connection correlation across sessions.

Detection Methods for CVE-2022-30629

Indicators of Compromise

  • Unusual patterns of TLS session analysis or traffic correlation attempts targeting Go-based services
  • Evidence of passive network monitoring infrastructure targeting TLS handshakes
  • Anomalous interest in session resumption traffic patterns from threat intelligence sources

Detection Strategies

  • Audit deployed Go applications and infrastructure to identify versions prior to 1.17.11 or 1.18.3
  • Implement software composition analysis (SCA) tools to detect vulnerable Go runtime versions in your environment
  • Monitor for reconnaissance activities targeting TLS implementations in your organization
  • Review network logs for patterns suggesting traffic correlation attacks

Monitoring Recommendations

  • Deploy network detection capabilities to identify unusual TLS handshake analysis patterns
  • Implement endpoint monitoring to track Go version deployments across your infrastructure
  • Establish alerts for security advisories affecting Go's crypto/tls package
  • Monitor for updates from the Go Vulnerability Database for related issues

How to Mitigate CVE-2022-30629

Immediate Actions Required

  • Upgrade all Go installations to version 1.17.11 or later (for 1.17.x branch) or 1.18.3 or later (for 1.18.x branch)
  • Identify and rebuild all applications compiled with vulnerable Go versions
  • Prioritize upgrades for internet-facing services that handle sensitive user sessions
  • Review and update container images and build pipelines using affected Go versions

Patch Information

The vulnerability has been addressed in Go versions 1.17.11 and 1.18.3. The fix ensures that ticket_age_add values are generated using a cryptographically secure random number generator, preventing the correlation attack.

Relevant resources:

  • Go Dev Change Log - Code change implementing the fix
  • Go Dev Issue Tracker - Original issue report
  • Go Source Code Commit - Specific commit with the fix
  • Golang Announcement Group - Official security announcement

Workarounds

  • If immediate upgrading is not possible, consider disabling TLS session tickets temporarily as a mitigation measure
  • Implement additional privacy protections at the application layer to reduce the impact of session correlation
  • Deploy network segmentation to limit attacker visibility into TLS handshakes
  • Consider using a reverse proxy with an updated TLS implementation in front of vulnerable Go applications
bash
# Verify Go version to ensure patched version is installed
go version
# Expected output should show 1.17.11+, 1.18.3+, or a later major version

# Check for vulnerable dependencies in Go modules
go list -m -versions golang.org/x/crypto

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGolang

  • SeverityLOW

  • CVSS Score3.1

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-330
  • Vendor Resources
  • Go Dev Change Log

  • Go Dev Issue Tracker

  • Go Source Code Commit

  • Golang Announcement Group

  • Go Vulnerability Report
  • Related CVEs
  • CVE-2024-24790: Golang Go Information Disclosure Flaw

  • CVE-2023-45287: Golang Go RSA Timing Information Disclosure

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

  • CVE-2025-47911: Go html.Parse DoS 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