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-26007

CVE-2026-26007: Cryptography Package Info Disclosure Flaw

CVE-2026-26007 is an information disclosure vulnerability in the Python cryptography package affecting elliptic curve operations. It allows attackers to exploit weak public keys in ECDH and ECDSA operations. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 13, 2026

CVE-2026-26007 Overview

CVE-2026-26007 is a cryptographic vulnerability in the Python cryptography package that exposes cryptographic primitives and recipes to Python developers. Prior to version 46.0.5, multiple public key loading and generation functions fail to verify that elliptic curve public key points belong to the expected prime-order subgroup of the curve. This missing validation enables small-subgroup attacks that can leak private key information through ECDH key exchange or allow signature forgery in ECDSA operations.

Critical Impact

Attackers can provide malicious public keys from small-order subgroups to extract private key bits during ECDH shared secret computation or forge signatures on SECT binary elliptic curves, compromising cryptographic security guarantees.

Affected Products

  • Python cryptography package versions prior to 46.0.5
  • Applications using SECT binary elliptic curves (SECT163K1, SECT163R2, SECT233K1, SECT233R1, SECT283K1, SECT283R1, SECT409K1, SECT409R1, SECT571K1, SECT571R1)
  • Systems utilizing public_key_from_numbers(), EllipticCurvePublicNumbers.public_key(), load_der_public_key(), or load_pem_public_key() functions

Discovery Timeline

  • 2026-02-10 - CVE-2026-26007 published to NVD
  • 2026-02-10 - Patch released in version 46.0.5 (credit to XlabAI Team of Tencent Xuanwu Lab and Atuin Automated Vulnerability Discovery Engine)
  • 2026-02-11 - Last updated in NVD database

Technical Details for CVE-2026-26007

Vulnerability Analysis

This vulnerability stems from insufficient validation in elliptic curve cryptography operations within the cryptography package. The affected functions—public_key_from_numbers(), EllipticCurvePublicNumbers.public_key(), load_der_public_key(), and load_pem_public_key()—accept public key points without verifying membership in the expected prime-order subgroup.

For elliptic curves with a cofactor greater than 1 (characteristic of binary/SECT curves), the curve's group of points contains small-order subgroups. When an attacker supplies a public key point P from one of these small-order subgroups, cryptographic operations produce predictable results that leak information about the victim's private key.

In ECDH key exchange scenarios, when a victim computes the shared secret S = [victim_private_key]P using the attacker's malicious point, the result reveals victim_private_key mod (small_subgroup_order). This effectively leaks the least significant bits of the private key. For ECDSA signature verification using these weak public keys, attackers can forge signatures that appear valid within the small subgroup context.

Root Cause

The root cause is classified under CWE-345 (Insufficient Verification of Data Authenticity). The public key loading functions do not perform subgroup membership checks, which are essential for curves with cofactors greater than 1. Proper elliptic curve implementations should validate that any received public key point lies in the correct prime-order subgroup before using it in cryptographic computations.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction, though it demands some cryptographic expertise to execute. An attacker must:

  1. Identify a target application using the vulnerable cryptography package with SECT binary curves
  2. Generate a malicious public key point from a small-order subgroup of the target curve
  3. Present this malicious public key to the victim during ECDH key exchange or for ECDSA verification
  4. Collect the resulting cryptographic outputs to derive private key bits or forge signatures

The following patch from the security fix shows the SECT curves that are now deprecated due to this vulnerability:

python
_SECT_CURVES: tuple[type[EllipticCurve], ...] = (
    SECT163K1,
    SECT163R2,
    SECT233K1,
    SECT233R1,
    SECT283K1,
    SECT283R1,
    SECT409K1,
    SECT409R1,
    SECT571K1,
    SECT571R1,
)

for _curve_cls in _SECT_CURVES:
    utils.deprecated(
        _curve_cls,
        __name__,
        f"{_curve_cls.__name__} will be removed in the next release.",
        utils.DeprecatedIn46,
        name=_curve_cls.__name__,
    )

Source: GitHub Commit

Detection Methods for CVE-2026-26007

Indicators of Compromise

  • Unusual elliptic curve public key values being submitted to applications, particularly points with small orders
  • Repeated ECDH key exchange attempts with varying public keys from the same source
  • Failed signature verifications followed by successful ones with modified parameters
  • Log entries showing cryptographic operations with SECT curve identifiers

Detection Strategies

  • Audit Python dependencies using pip list or package managers to identify cryptography versions below 46.0.5
  • Implement software composition analysis (SCA) tools to flag vulnerable library versions in CI/CD pipelines
  • Review application code for usage of SECT binary elliptic curves and the affected functions
  • Monitor for security advisories from the pyca/cryptography GitHub repository

Monitoring Recommendations

  • Enable verbose logging for cryptographic operations to capture public key parameters
  • Set up automated dependency scanning to alert on outdated cryptography package versions
  • Monitor network traffic for anomalous patterns in TLS handshakes or custom ECDH implementations
  • Implement runtime application security monitoring to detect unusual cryptographic function call patterns

How to Mitigate CVE-2026-26007

Immediate Actions Required

  • Upgrade the Python cryptography package to version 46.0.5 or later immediately
  • Audit all applications for usage of SECT binary elliptic curves and plan migration to recommended curves (e.g., P-256, P-384)
  • Review cryptographic implementations for direct use of the affected functions with external public keys
  • Rotate any cryptographic keys that may have been used with SECT curves in potentially compromised exchanges

Patch Information

The vulnerability is addressed in cryptography version 46.0.5, released on 2026-02-10. The fix adds proper subgroup membership validation for elliptic curve public keys. Additionally, support for SECT binary elliptic curves has been deprecated and will be removed in the next release. For detailed patch information, see the GitHub Security Advisory and the patch commit.

Workarounds

  • If immediate patching is not possible, avoid using SECT binary elliptic curves entirely and migrate to prime-order curves
  • Implement application-level validation of public key points before passing them to cryptographic functions
  • Restrict network interfaces that accept external public keys until the patch can be applied
  • Consider using alternative cryptographic libraries that perform proper subgroup validation
bash
# Upgrade cryptography package to patched version
pip install --upgrade cryptography>=46.0.5

# Verify installed version
pip show cryptography | grep Version

# Check for SECT curve usage in codebase
grep -r "SECT" --include="*.py" /path/to/application/

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCryptography

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-345
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • OpenWall OSS-Security Post
  • Related CVEs
  • CVE-2026-34073: Python Cryptography Information Disclosure

  • CVE-2020-25659: Cryptography RSA Timing Attack Vulnerability

  • CVE-2023-49083: Cryptography.io Cryptography DoS Flaw

  • CVE-2023-23931: Cryptography.io Buffer Mutation 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