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-2026-22700

CVE-2026-22700: RustCrypto Elliptic Curves DoS Vulnerability

CVE-2026-22700 is a denial-of-service vulnerability in RustCrypto Elliptic Curves that allows attackers to crash applications via malformed SM2 ciphertext. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22700 Overview

A denial-of-service vulnerability has been identified in the RustCrypto Elliptic Curves library, specifically affecting the SM2 public-key encryption (PKE) implementation. The decrypt() function performs unchecked slice::split_at operations on input buffers derived from untrusted ciphertext, allowing attackers to crash applications by submitting malformed input.

Critical Impact

Attackers can submit short/undersized ciphertext or carefully-crafted DER-encoded structures to trigger bounds-check panics in Rust, causing the calling thread or process to crash and resulting in service disruption.

Affected Products

  • RustCrypto Elliptic Curves version 0.14.0-pre.0
  • RustCrypto Elliptic Curves version 0.14.0-rc.0

Discovery Timeline

  • 2026-01-10 - CVE CVE-2026-22700 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2026-22700

Vulnerability Analysis

This vulnerability stems from improper input validation (CWE-20) in the SM2 decryption pathway. The SM2 algorithm is a Chinese national standard for public-key cryptography used in various encryption and digital signature applications. When processing incoming ciphertext, the decrypt() function uses Rust's slice::split_at method without first verifying that the input buffer contains sufficient bytes.

In Rust, slice::split_at performs a bounds check at runtime and panics if the index exceeds the slice length. While this prevents memory corruption, it causes the current thread to unwind and potentially terminate the process. An attacker with network access can exploit this by crafting undersized ciphertext payloads or malformed DER-encoded structures that pass initial parsing but fail during the split operation.

The vulnerability is particularly concerning because it can be triggered remotely without any authentication, affecting any service that exposes SM2 decryption functionality to untrusted input.

Root Cause

The root cause is insufficient bounds checking before performing slice operations on ciphertext data. The decrypt() function assumes that incoming ciphertext buffers meet minimum length requirements without explicitly validating these constraints. When the SM2 decryption routine attempts to split the ciphertext into its component parts (encrypted message, MAC, etc.), undersized inputs cause Rust's bounds-checking mechanism to panic rather than returning an error.

Attack Vector

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

  1. Identifying an application or service using the vulnerable RustCrypto Elliptic Curves library for SM2 decryption
  2. Crafting malicious ciphertext that is either too short or contains DER structures designed to trigger the vulnerable code path
  3. Sending the malicious payload to the target service
  4. The decrypt() function attempts to process the input, triggering a bounds-check panic that crashes the thread or process

The vulnerability mechanism involves the unsafe assumption that ciphertext data meets minimum length requirements. When processing DER-encoded structures or raw ciphertext, the implementation calls slice::split_at with indices calculated from header fields without validating that sufficient data exists. For technical implementation details, refer to the GitHub Security Advisory GHSA-j9xq-69pf-pcm8.

Detection Methods for CVE-2026-22700

Indicators of Compromise

  • Unexpected application crashes or service restarts affecting systems using RustCrypto elliptic-curves library
  • Rust panic messages in logs referencing slice::split_at or bounds check failures in SM2-related code paths
  • Increased error rates or connection resets on services handling SM2 encryption/decryption operations
  • Audit logs showing repeated decryption failures with malformed or undersized ciphertext inputs

Detection Strategies

  • Monitor application logs for Rust panic stack traces containing references to sm2, decrypt, or split_at functions
  • Implement input validation logging to capture and alert on ciphertext payloads below minimum expected sizes
  • Deploy application performance monitoring to detect sudden increases in crash rates or service restarts
  • Use dependency scanning tools to identify projects using RustCrypto elliptic-curves versions 0.14.0-pre.0 or 0.14.0-rc.0

Monitoring Recommendations

  • Enable structured logging for cryptographic operations to capture input sizes and decryption failures
  • Set up alerting thresholds for application crash rates that exceed baseline patterns
  • Monitor network traffic patterns for potential denial-of-service attack signatures targeting cryptographic endpoints
  • Implement health checks that can detect and report when SM2 decryption services become unavailable

How to Mitigate CVE-2026-22700

Immediate Actions Required

  • Audit your Rust projects for dependencies on RustCrypto elliptic-curves versions 0.14.0-pre.0 or 0.14.0-rc.0
  • Update to a patched version containing commit e60e991 or later
  • Implement input validation at the application layer to reject obviously malformed or undersized ciphertext before passing to the library
  • Consider temporarily disabling SM2 decryption endpoints if updates cannot be immediately applied

Patch Information

The vulnerability has been addressed in commit e60e991 (GitHub Commit Update). The fix adds proper bounds checking before slice operations to ensure that malformed input returns an error rather than causing a panic. Organizations should update their dependencies to incorporate this fix. Additional context is available in GitHub Pull Request #1603.

Workarounds

  • Implement application-level input validation to verify ciphertext meets minimum length requirements before calling decrypt()
  • Deploy rate limiting on endpoints that accept SM2 encrypted data to reduce the impact of potential denial-of-service attacks
  • Use process supervisors or container orchestration to automatically restart crashed services while patches are being deployed
  • Consider wrapping SM2 decryption calls with std::panic::catch_unwind as a temporary measure to prevent panics from terminating the entire process
bash
# Update Cargo.toml to use patched version
# Check current dependency version
cargo tree -p elliptic-curves

# Update dependencies to latest patched version
cargo update -p elliptic-curves

# Verify the update includes the security fix
cargo audit

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRustcrypto

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • 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
  • CWE-20
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request #1603

  • GitHub Security Advisory GHSA-j9xq-69pf-pcm8
  • Related CVEs
  • CVE-2026-22699: RustCrypto Elliptic Curves DoS Vulnerability

  • CVE-2026-24850: ML-DSA Signature Verification Vulnerability

  • CVE-2026-23519: RustCrypto CMOV Privilege Escalation Flaw

  • CVE-2026-22698: RustCrypto Elliptic Curves Disclosure Flaw
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