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
    • 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-28327

CVE-2022-28327: Golang Go Crypto DOS Vulnerability

CVE-2022-28327 is a denial of service vulnerability in Golang Go's crypto/elliptic library that triggers a panic through long scalar input. This article covers technical details, affected versions, impact, and mitigation.

Published: February 17, 2026

CVE-2022-28327 Overview

CVE-2022-28327 is a denial of service vulnerability affecting the generic P-256 feature in Go's crypto/elliptic package. The vulnerability allows an attacker to trigger a panic condition by providing overly long scalar input to cryptographic operations, potentially causing applications to crash and become unavailable.

Critical Impact

Attackers can remotely crash Go applications that process untrusted elliptic curve cryptographic operations, leading to service disruption without requiring authentication or user interaction.

Affected Products

  • Golang Go versions prior to 1.17.9
  • Golang Go versions 1.18.x prior to 1.18.1
  • Fedora Project Extra Packages for Enterprise Linux (EPEL) 7.0 and 8.0
  • Fedora 34, 35, and 36

Discovery Timeline

  • April 20, 2022 - CVE-2022-28327 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-28327

Vulnerability Analysis

The vulnerability exists within Go's crypto/elliptic package, specifically in the generic P-256 curve implementation. The P-256 curve (also known as secp256r1 or prime256v1) is one of the most widely used elliptic curves for cryptographic operations, including TLS, digital signatures, and key exchange protocols.

When processing scalar multiplication operations, the implementation fails to properly validate the length of scalar input values. An attacker can exploit this by supplying an excessively long scalar value, which causes the Go runtime to panic rather than gracefully handling the malformed input. This represents a denial of service condition that can be triggered remotely over the network.

The vulnerability is particularly concerning because elliptic curve operations are fundamental to many secure communication protocols. Any Go application that processes cryptographic operations from untrusted sources—such as TLS servers, certificate validators, or signature verification services—could be vulnerable to this attack.

Root Cause

The root cause of this vulnerability is insufficient input validation in the scalar multiplication routines of the generic P-256 implementation. The code does not properly check the bounds of scalar input before processing, allowing oversized inputs to trigger a panic condition. This represents an improper input validation flaw where boundary conditions are not adequately enforced for cryptographic parameters.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying a Go application that processes elliptic curve cryptographic operations from external input
  2. Crafting a malicious request containing an excessively long scalar value
  3. Sending the crafted input to the target application
  4. The application's crypto/elliptic package processes the input and panics due to the oversized scalar

The vulnerability affects any service that uses the generic P-256 implementation in crypto/elliptic and accepts cryptographic data from untrusted sources. This includes TLS servers, certificate validation endpoints, signature verification services, and applications that perform ECDH key exchanges.

Since the attack causes a panic in the Go runtime, the affected application or goroutine will terminate unexpectedly. Depending on the application's error handling and recovery mechanisms, this could result in complete service unavailability.

Detection Methods for CVE-2022-28327

Indicators of Compromise

  • Application crashes or unexpected restarts in Go-based services
  • Panic logs referencing crypto/elliptic or P-256 operations
  • Unusual network traffic patterns with malformed cryptographic payloads
  • Service unavailability correlating with inbound requests to cryptographic endpoints

Detection Strategies

  • Monitor Go application logs for panic messages containing references to crypto/elliptic, P256, or scalar operations
  • Implement application-level monitoring to detect crash loops or unexpected process terminations
  • Deploy intrusion detection systems (IDS) with rules to identify anomalous TLS handshakes or malformed cryptographic data
  • Use runtime application self-protection (RASP) solutions to detect panic conditions before they cause service disruption

Monitoring Recommendations

  • Enable comprehensive logging for Go applications that handle cryptographic operations
  • Configure alerting for application crashes and panic events in production environments
  • Monitor service availability metrics and set up alerts for unexpected downtime patterns
  • Review network traffic logs for requests with unusually large payloads to cryptographic endpoints

How to Mitigate CVE-2022-28327

Immediate Actions Required

  • Upgrade Go to version 1.17.9 or later for the 1.17.x branch
  • Upgrade Go to version 1.18.1 or later for the 1.18.x branch
  • Rebuild and redeploy all Go applications using affected versions
  • Review and update container images and CI/CD pipelines to use patched Go versions

Patch Information

The Go team addressed this vulnerability in Go 1.17.9 and 1.18.1. The fix adds proper bounds checking for scalar input values in the P-256 implementation, ensuring that oversized inputs are rejected gracefully rather than causing a panic.

Organizations should update their Go installations and rebuild all affected applications. For detailed patch information, refer to the Golang Announce Post Thread. Linux distributions have also released updated packages—see the Fedora Package Announcements and Gentoo GLSA 202208-02 for distribution-specific updates.

Industrial control system users should also review the Siemens Security Advisory SSA-744259 and NetApp Security Advisory ntap-20220915-0010 for product-specific guidance.

Workarounds

  • Implement input validation at the application layer to reject oversized cryptographic parameters before they reach the crypto/elliptic package
  • Deploy a web application firewall (WAF) or reverse proxy to filter malformed requests targeting cryptographic endpoints
  • Implement panic recovery handlers in Go applications to prevent complete service termination
  • Consider rate limiting on endpoints that process cryptographic operations to reduce the impact of denial of service attempts
bash
# Verify Go version and update
go version
# If version is below 1.17.9 or 1.18.1, update using your package manager

# For Fedora/RHEL systems
sudo dnf update golang

# For Debian/Ubuntu systems
sudo apt update && sudo apt install golang-go

# Rebuild affected applications after updating Go
go build -o myapp ./...

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

  • Vulnerability Details
  • TypeDOS

  • 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:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • Siemens Security Advisory SSA-744259

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Gentoo GLSA 202208-02

  • NetApp Security Advisory ntap-20220915-0010
  • Vendor Resources
  • Golang Announce Mailing List

  • Golang Announce Post Thread
  • Related CVEs
  • CVE-2025-47911: Go html.Parse DoS Vulnerability

  • CVE-2025-58190: Golang x/net/html DoS Vulnerability

  • CVE-2025-58187: Golang Go DOS Vulnerability

  • CVE-2025-58188: Golang Go 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