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

CVE-2026-33936: Tlsfuzzer Ecdsa DOS Vulnerability

CVE-2026-33936 is a denial of service vulnerability in Tlsfuzzer Ecdsa caused by DER parsing flaws that trigger unexpected crashes. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-33936 Overview

CVE-2026-33936 is an input validation vulnerability in the ecdsa PyPI package, a pure Python implementation of Elliptic Curve Cryptography (ECC) supporting ECDSA, EdDSA, and ECDH. The vulnerability exists in the low-level DER (Distinguished Encoding Rules) parsing functions, specifically in the ecdsa.der.remove_octet_string() function, which incorrectly accepts truncated DER data where the encoded length exceeds the available buffer.

When processing malformed DER input, the SigningKey.from_der() function raises an internal IndexError exception rather than properly rejecting the invalid data with an expected UnexpectedDER or ValueError exception. This improper error handling can cause applications that parse untrusted DER private keys to crash, resulting in a denial of service condition.

Critical Impact

Applications processing untrusted DER-encoded private keys may crash unexpectedly when encountering crafted malicious input, causing denial of service for cryptographic operations.

Affected Products

  • tlsfuzzer ecdsa versions prior to 0.19.2
  • Python applications using the ecdsa package for DER parsing operations
  • Systems processing untrusted ECDSA/EdDSA private keys in DER format

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-33936 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33936

Vulnerability Analysis

This vulnerability stems from insufficient validation of the length field in DER-encoded data structures. In DER encoding, data elements include a tag, length, and value structure. The remove_octet_string() function parses OCTET STRING elements but fails to verify that the declared length does not exceed the actual buffer size before processing.

For example, a maliciously crafted OCTET STRING that declares a length of 4096 bytes but only provides 3 bytes of data passes validation when it should be rejected. When subsequent parsing operations attempt to access indices beyond the actual buffer boundaries, Python raises an IndexError with the message "index out of bounds on dimension 1" instead of the library raising a proper cryptographic parsing exception.

The vulnerability is exploitable remotely without authentication, though the impact is limited to availability as it cannot lead to data exfiltration or code execution.

Root Cause

The root cause is improper input validation (CWE-20) in the DER parsing logic. The remove_octet_string() function and related parsing routines read the length field from the DER structure and proceed to parse the body without first confirming that sufficient data exists in the input buffer to satisfy the declared length. This creates a buffer over-read condition that manifests as an unhandled IndexError exception.

Attack Vector

An attacker can exploit this vulnerability by providing a crafted DER-encoded private key to any application that uses the ecdsa library's SigningKey.from_der() function to parse untrusted input. The attack requires:

  1. The target application must accept DER-encoded private key data from an untrusted source
  2. The application must not have exception handling around the parsing operation that catches generic IndexError exceptions
  3. The attacker crafts a DER structure with a length field that exceeds the actual data provided
python
# Security patch in src/ecdsa/der.py
# Source: https://github.com/tlsfuzzer/python-ecdsa/commit/bd66899550d7185939bf27b75713a2ac9325a9d3
         )
     tag = s0 & 0x1F
     length, llen = read_length(string[1:])
+    if length > len(string) - 1 - llen:
+        raise UnexpectedDER("Length longer than the provided buffer")
     body = string[1 + llen : 1 + llen + length]
     rest = string[1 + llen + length :]
     return tag, body, rest

The patch adds an explicit length validation check before attempting to extract the body and rest of the DER structure, raising a proper UnexpectedDER exception when the declared length exceeds available data.

Detection Methods for CVE-2026-33936

Indicators of Compromise

  • Application crashes with IndexError: index out of bounds on dimension 1 exceptions originating from the ecdsa library
  • Unexpected service restarts or process terminations in applications handling DER-encoded key material
  • Log entries showing failed private key parsing operations with unusual error messages

Detection Strategies

  • Monitor application logs for IndexError exceptions traced to ecdsa.der module functions
  • Implement dependency scanning to identify installations of ecdsa package versions prior to 0.19.2
  • Use software composition analysis (SCA) tools to flag vulnerable package versions in CI/CD pipelines
  • Review exception handling patterns in code that processes untrusted DER input

Monitoring Recommendations

  • Configure alerting for application crashes related to cryptographic parsing operations
  • Monitor for repeated parsing failures from the same source which may indicate exploitation attempts
  • Track ecdsa package versions across the environment using dependency management tools
  • Implement rate limiting on endpoints that accept DER-encoded key material

How to Mitigate CVE-2026-33936

Immediate Actions Required

  • Upgrade the ecdsa package to version 0.19.2 or later using pip install --upgrade ecdsa>=0.19.2
  • Audit applications to identify all locations where SigningKey.from_der() or related DER parsing functions are called
  • Add exception handling around DER parsing operations to catch both expected (UnexpectedDER, ValueError) and unexpected (IndexError) exceptions
  • Restrict acceptance of DER-encoded keys from untrusted sources where possible

Patch Information

The vulnerability is patched in version 0.19.2 of the ecdsa package. The fix adds explicit length validation in the DER parsing functions to ensure that declared lengths do not exceed available buffer sizes before attempting to parse data.

For detailed patch information, see the GitHub Security Advisory GHSA-9f5j-8jwj-x28g and the GitHub Commit Changes.

Workarounds

  • Wrap all calls to SigningKey.from_der() in try-except blocks that handle IndexError in addition to the expected UnexpectedDER exception
  • Validate DER input length boundaries before passing data to the ecdsa library
  • Implement input sanitization to reject obviously malformed DER structures before parsing
  • Consider using alternative cryptographic libraries with more robust DER validation if immediate patching is not feasible
bash
# Configuration example - Upgrade ecdsa package
pip install --upgrade ecdsa>=0.19.2

# Verify installed version
pip show ecdsa | grep Version

# Check for vulnerable versions in requirements
pip list --outdated | grep ecdsa

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechEcdsa

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Release Version 0.19.2
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-9f5j-8jwj-x28g
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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