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-61730

CVE-2025-61730: TLS 1.3 Information Disclosure Flaw

CVE-2025-61730 is an information disclosure vulnerability in TLS 1.3 handshake processing that allows network-local attackers to exploit encryption level boundaries. This article covers technical details, impact, and mitigation.

Published: January 30, 2026

CVE-2025-61730 Overview

CVE-2025-61730 is an SSL/TLS vulnerability affecting the Go programming language's TLS 1.3 handshake implementation. During the TLS 1.3 handshake, if multiple messages are sent in records that span encryption level boundaries (for instance the Client Hello and Encrypted Extensions messages), the subsequent messages may be processed before the encryption level changes. This timing issue can cause minor information disclosure if a network-local attacker can inject messages during the handshake.

Critical Impact

A network-local attacker positioned to inject messages during a TLS 1.3 handshake could potentially extract sensitive information before the encryption level is properly established, compromising the confidentiality of the TLS session.

Affected Products

  • Go programming language (crypto/tls package)
  • Applications using Go's TLS 1.3 implementation
  • Services relying on Go's standard library for TLS connections

Discovery Timeline

  • 2026-01-28 - CVE CVE-2025-61730 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-61730

Vulnerability Analysis

This vulnerability exists in Go's crypto/tls package during TLS 1.3 handshake processing. The issue arises from improper handling of encryption level transitions when multiple handshake messages are batched within TLS records that cross encryption boundaries.

In a standard TLS 1.3 handshake, messages progress through different encryption levels: initial plaintext (Client Hello), handshake traffic secrets, and application traffic secrets. The vulnerability occurs when the implementation processes subsequent messages before properly transitioning to the appropriate encryption level.

The local attack vector requires the attacker to be positioned on the same network segment to inject crafted messages during the handshake window. While the attack complexity is relatively low and requires no privileges or user interaction, the impact is limited to confidentiality exposure without integrity or availability impact.

Root Cause

The root cause stems from the order of operations in Go's TLS 1.3 handshake state machine. When handshake messages span across records with different encryption level requirements, the message processing logic does not adequately verify that the encryption level has been updated before processing the next message. This creates a brief window where messages intended for a higher encryption level may be processed at a lower level.

Attack Vector

An attacker with local network access can exploit this vulnerability by monitoring and injecting traffic during an active TLS 1.3 handshake between a client and server. The attack requires precise timing to inject messages at the moment when encryption levels are transitioning.

The attacker would need to:

  1. Position themselves on the local network to intercept TLS handshake traffic
  2. Identify handshake sessions using TLS 1.3
  3. Inject crafted messages during the encryption level transition window
  4. Capture any information disclosed before proper encryption is established

The vulnerability is documented in the Go Issue Tracker and addressed in Go.dev Change Log Entry. For detailed technical information, refer to the Go Vulnerability Advisory #GO-2026-4340.

Detection Methods for CVE-2025-61730

Indicators of Compromise

  • Unusual patterns in TLS 1.3 handshake sequences from local network sources
  • Anomalous message injection attempts during TLS handshake phases
  • Unexpected handshake failures or retries correlating with local network activity

Detection Strategies

  • Monitor for malformed or out-of-sequence TLS 1.3 handshake messages
  • Implement network-level inspection for unusual traffic patterns during TLS session establishment
  • Deploy intrusion detection rules to identify potential message injection attempts during handshake phases
  • Audit Go application versions to identify vulnerable deployments

Monitoring Recommendations

  • Enable detailed TLS handshake logging in Go applications to capture handshake anomalies
  • Implement network monitoring on internal segments where local attackers could position themselves
  • Configure alerts for repeated TLS handshake failures that may indicate exploitation attempts

How to Mitigate CVE-2025-61730

Immediate Actions Required

  • Identify all applications using Go's crypto/tls package with TLS 1.3 enabled
  • Review the Golang Announce Group Post for official guidance
  • Plan upgrade to a patched Go version as specified in the advisory
  • Assess network segmentation to reduce local attack surface

Patch Information

The Go development team has addressed this vulnerability in the change referenced at Go.dev Change Log Entry. Organizations should upgrade to the patched Go version as detailed in the Go Vulnerability Advisory #GO-2026-4340.

After updating the Go runtime, rebuild all affected applications to incorporate the security fix. Verify the fix by checking the Go version and reviewing TLS handshake behavior in test environments.

Workarounds

  • Implement network segmentation to limit local attacker positioning opportunities
  • Deploy network-level TLS inspection at trust boundaries to detect anomalous handshake patterns
  • Consider using mutual TLS (mTLS) to add additional authentication layers
  • Monitor for the official patch and prioritize upgrade scheduling
bash
# Configuration example
# Verify Go version in your environment
go version

# Check for vulnerable dependencies in Go modules
go list -m all | grep -i tls

# Rebuild applications after Go upgrade
go build -v ./...

# Verify TLS configuration in applications
go test -v ./... -run TLS

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.2

  • EPSS Probability0.01%

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

  • Go.dev Issue Tracker Entry

  • Golang Announce Group Post

  • Go Vulnerability Advisory #GO-2026-4340
  • Latest CVEs
  • CVE-2025-9962: Novakon P Series Privilege Escalation

  • CVE-2026-1961: Foreman WebSocket Proxy RCE Vulnerability

  • CVE-2026-4903: Tenda AC5 Buffer Overflow Vulnerability

  • CVE-2026-4902: Tenda AC5 Buffer Overflow Vulnerability
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