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-2023-45287

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

CVE-2023-45287 is an information disclosure vulnerability in Golang Go's RSA-based TLS key exchanges that may leak timing information through PKCS#1 padding removal. This article covers technical details, affected versions, and steps.

Published: February 4, 2026

CVE-2023-45287 Overview

CVE-2023-45287 is a timing side-channel vulnerability affecting the RSA-based TLS key exchanges in Go versions prior to 1.20. The vulnerability stems from the math/big library not implementing constant-time operations, which allows potential attackers to extract sensitive session key information through precise timing measurements during TLS handshakes.

Critical Impact

Attackers may recover TLS session key bits through timing analysis, potentially compromising the confidentiality of encrypted communications in applications using affected Go versions.

Affected Products

  • Golang Go versions prior to 1.20
  • Applications using the crypto/tls library with RSA key exchange
  • Systems relying on RSA-based TLS connections built with vulnerable Go versions

Discovery Timeline

  • 2023-12-05 - CVE-2023-45287 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-45287

Vulnerability Analysis

This vulnerability is classified as a Timing Attack (CWE-203: Observable Discrepancy). The core issue lies in Go's implementation of RSA operations within TLS key exchanges prior to version 1.20. While RSA blinding was implemented as a countermeasure against timing attacks, subsequent analysis revealed that the protection was incomplete.

The vulnerability specifically affects the PKCS#1 padding removal process during RSA decryption. The non-constant-time nature of the math/big library operations means that the time taken to process different ciphertext values can vary measurably. This timing variance potentially leaks information about the private key operations, which an attacker positioned on the network could exploit to gradually recover session key bits.

This vulnerability is related to the broader class of Marvin attacks, which target RSA PKCS#1 v1.5 implementations that exhibit timing side channels. For additional context on this attack class, see the Red Hat Marvin Project Page.

Root Cause

The root cause is the use of the math/big library for RSA operations in the crypto/tls package. This library was not designed to provide constant-time guarantees, making it unsuitable for cryptographic operations where timing consistency is essential. Specifically, the variable-time behavior during PKCS#1 v1.5 padding removal creates an observable timing discrepancy that can be exploited by attackers.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker must be able to observe and measure the timing of TLS handshakes with a vulnerable server or client. By performing many connection attempts and statistically analyzing the response times, an attacker could potentially extract information about session keys.

The attack scenario involves:

  1. An attacker initiates multiple TLS connections to a target server using RSA key exchange
  2. Precise timing measurements are collected for each handshake
  3. Statistical analysis of timing variations reveals information about the RSA decryption process
  4. Over many iterations, session key bits can potentially be recovered

For technical discussion of the underlying implementation issue, refer to the Go.dev Issue 20654 Discussion.

Detection Methods for CVE-2023-45287

Indicators of Compromise

  • Unusual patterns of repeated TLS connection attempts from single sources targeting RSA-based cipher suites
  • High volume of incomplete or rapidly-terminated TLS handshakes from specific IP addresses
  • Network traffic analysis revealing statistical probing patterns characteristic of timing attacks
  • Anomalous TLS negotiation patterns favoring RSA key exchange over ECDHE alternatives

Detection Strategies

  • Implement TLS connection logging to identify unusual handshake patterns and repeated connection attempts
  • Deploy network monitoring to detect high-frequency connection attempts that may indicate timing analysis
  • Use application dependency scanning tools to identify Go applications built with versions prior to 1.20
  • Monitor for cipher suite negotiation anomalies that specifically request RSA key exchange

Monitoring Recommendations

  • Enable detailed TLS handshake logging on servers handling sensitive communications
  • Configure alerting for abnormal TLS connection rates from individual sources
  • Implement Software Bill of Materials (SBOM) tracking to identify affected applications across the environment
  • Review TLS configuration to ensure RSA key exchange is disabled where possible

How to Mitigate CVE-2023-45287

Immediate Actions Required

  • Upgrade all Go-based applications to Go version 1.20 or later, which implements fully constant-time RSA operations
  • Audit deployed applications and services to identify those using vulnerable Go versions
  • Configure TLS settings to prefer ECDHE-based key exchanges over RSA where immediate patching is not possible
  • Review and update Go module dependencies to ensure transitive dependencies are also updated

Patch Information

The vulnerability is addressed in Go 1.20 and later versions. The crypto/tls library was rewritten to use a fully constant-time RSA implementation that eliminates observable timing variations. For detailed information about the fix, see the Go.dev Vulnerability Report GO-2023-2375 and the Go.dev CL 326012 Update.

Additional vendor advisories include:

  • Golang Announcement on Go.dev
  • NetApp Security Advisory NTAP-20240112-0005

Workarounds

  • Disable RSA key exchange cipher suites in TLS configuration if upgrading Go is not immediately feasible
  • Configure servers to prefer ECDHE-based cipher suites which are not affected by this vulnerability
  • Implement network-level rate limiting to reduce the effectiveness of timing-based attacks
  • Deploy TLS termination proxies running patched software in front of vulnerable applications
bash
# Example: TLS configuration to disable RSA key exchange (application-specific)
# For Go applications, configure the tls.Config to exclude RSA key exchange cipher suites
# Prefer cipher suites using ECDHE key exchange:
# TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
# TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
# TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.18%

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

  • Go.dev Issue 20654 Discussion

  • Golang Announcement on Go.dev

  • Red Hat Marvin Project Page

  • NetApp Security Advisory NTAP-20240112-0005
  • Vendor Resources
  • Go.dev Vulnerability Report GO-2023-2375
  • Related CVEs
  • CVE-2024-24790: Golang Go Information Disclosure Flaw

  • CVE-2022-30629: Golang Go Information Disclosure Flaw

  • 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