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-2022-23806

CVE-2022-23806: Golang Go Elliptic Curve Vulnerability

CVE-2022-23806 is an elliptic curve validation flaw in Golang Go's crypto/elliptic package that incorrectly validates field elements. This post covers the technical details, affected versions, impact, and mitigation.

Published: February 18, 2026

CVE-2022-23806 Overview

CVE-2022-23806 is an input validation vulnerability in the Curve.IsOnCurve function within the crypto/elliptic package of Go programming language. The function can incorrectly return true in situations where a big.Int value is not a valid field element, potentially allowing attackers to bypass cryptographic validation checks. This flaw affects Go versions before 1.16.14 and versions 1.17.x before 1.17.7.

Critical Impact

Applications relying on elliptic curve cryptography for signature validation, key exchange, or other security-critical operations may accept invalid or malformed curve points, potentially leading to authentication bypasses, integrity violations, or denial of service conditions.

Affected Products

  • Golang Go (versions before 1.16.14 and 1.17.x before 1.17.7)
  • NetApp BeeGFS CSI Driver
  • NetApp Cloud Insights Telegraf Agent
  • NetApp Kubernetes Monitoring Operator
  • NetApp StorageGRID
  • Debian Linux 9.0

Discovery Timeline

  • 2022-02-11 - CVE-2022-23806 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-23806

Vulnerability Analysis

The vulnerability exists in Go's crypto/elliptic package, specifically within the Curve.IsOnCurve function. This function is designed to verify whether a given point lies on an elliptic curve, which is a fundamental security check in cryptographic operations. However, the implementation fails to properly validate that the input coordinates are valid field elements before performing the curve membership check.

When a big.Int value is provided that exceeds the field modulus or is otherwise not a valid field element, the function may incorrectly return true, indicating the point is on the curve when it actually is not. This improper validation (CWE-252: Unchecked Return Value) can have severe consequences for applications relying on this check for cryptographic security.

Root Cause

The root cause is the failure to validate input big.Int values as proper field elements before the curve membership check. The IsOnCurve function assumes that coordinate values are already reduced modulo the field prime, but this assumption is not enforced. When callers pass coordinates larger than the field modulus, the arithmetic operations produce incorrect results, potentially causing the function to validate invalid points as legitimate curve members.

Attack Vector

An attacker can exploit this vulnerability by submitting specially crafted elliptic curve points with coordinates that are not valid field elements (e.g., values larger than the curve's field modulus). Applications using the affected Curve.IsOnCurve function for point validation would incorrectly accept these malformed points as valid.

The attack is network-accessible and requires no authentication or user interaction. Exploitation could occur in scenarios such as TLS handshakes, ECDSA signature verification, ECDH key exchanges, or any application processing untrusted elliptic curve point data. The consequences include potential authentication bypasses and denial of service through panics or unexpected behavior in downstream cryptographic operations.

Detection Methods for CVE-2022-23806

Indicators of Compromise

  • Unexpected application crashes or panics in Go services during cryptographic operations
  • Failed or anomalous TLS handshakes with malformed elliptic curve data
  • Signature verification failures followed by unexpected authentication successes
  • Unusual error patterns in applications performing ECDSA or ECDH operations

Detection Strategies

  • Implement runtime monitoring for Go applications to detect panic conditions in crypto/elliptic package functions
  • Deploy application-level logging to capture and analyze elliptic curve point validation attempts
  • Use static analysis tools to identify applications importing vulnerable crypto/elliptic package versions
  • Monitor network traffic for malformed TLS ClientHello or ServerHello messages containing invalid EC parameters

Monitoring Recommendations

  • Audit all deployed Go applications to determine which versions are in use
  • Configure centralized logging for cryptographic operation failures
  • Implement alerting for unusual patterns in authentication or key exchange failures
  • Monitor for unexpected service restarts or crashes in Go-based microservices

How to Mitigate CVE-2022-23806

Immediate Actions Required

  • Upgrade Go to version 1.16.14 or later for the 1.16.x branch
  • Upgrade Go to version 1.17.7 or later for the 1.17.x branch
  • Recompile all applications built with vulnerable Go versions using the patched compiler
  • Review and update third-party dependencies that may include vulnerable Go runtime components

Patch Information

The vulnerability has been addressed in Go versions 1.16.14 and 1.17.7. The fix ensures that Curve.IsOnCurve properly validates input coordinates as valid field elements before performing curve membership checks. Official patches and announcements are available from the GoLang Announcement. Additional vendor-specific patches are available from NetApp Security Advisory NTAP-20220225-0006, Debian LTS Advisory, and Gentoo GLSA #202208-02.

Workarounds

  • If immediate patching is not possible, implement additional input validation before calling IsOnCurve to ensure coordinates are within expected bounds
  • Consider using alternative cryptographic libraries for critical operations until patches can be applied
  • Restrict network exposure of affected services to reduce attack surface
  • Implement rate limiting on endpoints that process elliptic curve data to mitigate potential denial of service
bash
# Check Go version and upgrade if necessary
go version

# Upgrade Go on Linux (example using official tarball)
wget https://go.dev/dl/go1.17.7.linux-amd64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.17.7.linux-amd64.tar.gz

# Rebuild affected applications
go build -a ./...

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechGolang Go

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-252
  • Technical References
  • Debian LTS Advisory #2022-04-17

  • Debian LTS Advisory #2022-04-18

  • Debian LTS Advisory #2023-04-21

  • Gentoo GLSA #202208-02

  • NetApp Security Advisory NTAP-20220225-0006

  • Oracle Security Alert July 2022
  • Vendor Resources
  • GoLang Announcement
  • Related CVEs
  • CVE-2025-0913: Golang Go Symlink Handling Vulnerability

  • CVE-2021-34558: Golang Go TLS Certificate Vulnerability

  • CVE-2023-29402: Golang Go RCE Vulnerability

  • CVE-2023-29405: Golang Go RCE 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