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

CVE-2026-33895: Node-Forge Auth Bypass Vulnerability

CVE-2026-33895 is an authentication bypass flaw in node-forge's Ed25519 signature verification that accepts forged non-canonical signatures. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33895 Overview

CVE-2026-33895 is a signature malleability vulnerability affecting Forge (also known as node-forge), a native JavaScript implementation of Transport Layer Security. The vulnerability exists in the Ed25519 signature verification implementation, which accepts forged non-canonical signatures where the scalar S is not properly reduced modulo the group order (S >= L). This allows attackers to create alternate valid signatures for any legitimately signed message, potentially bypassing authentication and authorization mechanisms.

Critical Impact

Authentication and authorization bypass through signature malleability attacks. Applications relying on signature uniqueness for deduplication, replay tracking, or signed-object canonicalization checks may be compromised.

Affected Products

  • Forge (node-forge) versions prior to 1.4.0
  • Applications using node-forge for Ed25519 signature verification
  • Systems implementing signature-based authentication or replay protection with node-forge

Discovery Timeline

  • 2026-03-27 - CVE-2026-33895 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-33895

Vulnerability Analysis

The vulnerability stems from an improper verification of cryptographic signatures (CWE-347) in the Ed25519 implementation. According to IETF RFC 8032 Section 8.4, compliant implementations must reject signatures where the scalar S is greater than or equal to the group order L. However, node-forge prior to version 1.4.0 fails to enforce this constraint, accepting both canonical signatures and their S + L variants as valid.

This discrepancy creates a signature malleability issue where an attacker can take any valid signature and compute an alternate signature that also passes verification. While both signatures correspond to the same message and public key, they have different byte representations. This class of vulnerability has been previously exploited in real-world attacks as documented in CVE-2026-25793 and CVE-2022-35961.

Root Cause

The root cause is the missing validation check in the Ed25519 signature verification routine. The implementation does not verify that the scalar component S of the signature is in the valid range 0 <= S < L, where L is the order of the Ed25519 base point. This allows signatures with S >= L to pass verification when they should be rejected per the Ed25519 specification.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker who obtains a legitimate signed message can compute an alternate signature by adding L to the scalar component S. This malleated signature will verify successfully against the same message and public key.

The attack enables several exploitation scenarios:

The signature malleability can be exploited to bypass replay protection mechanisms. If an application tracks previously seen signatures to prevent replay attacks, an attacker can submit the S + L variant of a signature to bypass this check while the verification still succeeds.

For authentication systems that use signature uniqueness as part of identity verification or session binding, an attacker could potentially impersonate a legitimate user or bypass authorization checks by presenting a malleated version of a captured signature.

Applications performing deduplication based on signature bytes or implementing signed-object canonicalization checks are also vulnerable, as the malleated signature represents the same logical authorization but with different bytes.

For technical details on the fix, see the GitHub Forge Commit Update.

Detection Methods for CVE-2026-33895

Indicators of Compromise

  • Multiple valid signatures observed for identical signed content from the same public key
  • Signature values where the S component exceeds the Ed25519 group order L (2^252 + 27742317777372353535851937790883648493)
  • Authentication or authorization events with signatures that differ only in the S component
  • Anomalous replay protection bypass events in application logs

Detection Strategies

  • Implement monitoring for duplicate signed payloads with different signature bytes in authentication systems
  • Add validation rules to detect signatures with S values exceeding the Ed25519 group order threshold
  • Conduct code audits to identify usage of node-forge Ed25519 verification in security-critical paths
  • Compare signature verification results between node-forge and OpenSSL-backed implementations to identify discrepancies

Monitoring Recommendations

  • Monitor authentication logs for repeated authentication attempts using the same payload but different signatures
  • Implement alerting for signature verification events that would fail with stricter implementations
  • Track dependency usage across applications to identify systems using vulnerable node-forge versions
  • Enable detailed logging on systems performing Ed25519 signature verification for forensic analysis

How to Mitigate CVE-2026-33895

Immediate Actions Required

  • Upgrade node-forge to version 1.4.0 or later immediately
  • Audit applications using node-forge for Ed25519 signature verification in security-critical contexts
  • Review authentication and replay protection mechanisms for potential bypass through signature malleability
  • Consider implementing additional signature canonicalization checks at the application layer as defense in depth

Patch Information

The vulnerability is resolved in node-forge version 1.4.0, which adds proper validation to ensure the scalar S component is reduced modulo the group order before accepting signatures. The fix implements the check specified in IETF RFC 8032 Section 8.4.

For detailed patch information, refer to the GitHub Security Advisory GHSA-q67f-28xg-22rw.

Workarounds

  • Implement additional server-side validation to reject signatures with S values >= L before passing to node-forge
  • Use alternative Ed25519 implementations that properly enforce signature canonicalization (such as Node.js native crypto.verify)
  • Add application-layer signature normalization that validates and rejects non-canonical signatures
  • Implement hash-based tracking of signed payloads rather than signature bytes for replay protection
bash
# Update node-forge to patched version
npm update node-forge@1.4.0

# Verify installed version
npm list node-forge

# Audit for vulnerable versions in dependency tree
npm audit

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechNode Forge

  • 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:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-347
  • Technical References
  • IETF RFC 8032 Section 8.4

  • GitHub Forge Commit Update

  • GitHub Security Advisory GHSA-q67f-28xg-22rw
  • Related CVEs
  • CVE-2026-33894: node-forge Auth Bypass Vulnerability

  • CVE-2026-33896: node-forge Certificate Validation Bypass

  • CVE-2026-33891: Node-Forge BigInteger 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