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

CVE-2026-4600: Jsrsasign Auth Bypass Vulnerability

CVE-2026-4600 is an authentication bypass flaw in Jsrsasign that allows attackers to forge DSA signatures and X.509 certificates through malicious domain parameters. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-4600 Overview

CVE-2026-4600 is a critical cryptographic signature verification vulnerability affecting the jsrsasign JavaScript library. Versions of the package jsrsasign before 11.1.1 are vulnerable to Improper Verification of Cryptographic Signature via the DSA domain-parameter validation in KJUR.crypto.DSA.setPublic and the related DSA/X509 verification flow in src/dsa-2.0.js. An attacker can forge DSA signatures or X.509 certificates that X509.verifySignature() accepts by supplying malicious domain parameters such as g=1, y=1, and a fixed r=1, which make the verification equation true for any hash.

Critical Impact

Attackers can forge DSA signatures and X.509 certificates, completely bypassing cryptographic verification and potentially compromising authentication, code signing, and certificate validation workflows.

Affected Products

  • jsrsasign versions prior to 11.1.1
  • Node.js applications using vulnerable jsrsasign versions
  • Web applications implementing DSA or X.509 verification with jsrsasign

Discovery Timeline

  • 2026-03-23 - CVE-2026-4600 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-4600

Vulnerability Analysis

This vulnerability stems from insufficient validation of DSA domain parameters in the jsrsasign cryptographic library. The Digital Signature Algorithm (DSA) relies on specific mathematical relationships between its domain parameters (p, q, g) and the public key (y) to ensure signature integrity. When these parameters are not properly validated, an attacker can craft malicious values that trivially satisfy the signature verification equation regardless of the actual message hash.

The flaw exists in the KJUR.crypto.DSA.setPublic function and the DSA/X509 verification flow within src/dsa-2.0.js. By supplying specially crafted domain parameters such as g=1, y=1, and r=1, an attacker can force the verification equation to evaluate to true for any arbitrary hash value, enabling complete signature forgery.

Root Cause

The root cause is the absence of FIPS 186-4 Section 4.7 compliant domain parameter validation when setting DSA public keys. According to FIPS 186-4, domain parameters and public keys shall be validated to ensure they fall within acceptable ranges and maintain the required mathematical properties. The vulnerable code accepted any domain parameters without verifying:

  1. That q and g are greater than 1 and less than p
  2. That y is greater than 1 and less than p
  3. That g raised to the power q modulo p equals 1 (proving g has order q in the multiplicative group)

Attack Vector

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

  1. Creating a malicious X.509 certificate or DSA signature with crafted domain parameters
  2. Setting g=1 and y=1 in the public key parameters
  3. Using r=1 as part of the signature, which makes the verification equation trivially true
  4. Submitting the forged certificate or signature to any application using vulnerable jsrsasign versions

The following patch demonstrates the security fix that adds proper domain parameter validation:

javascript
         _getVbyList = _ASN1HEX.getVbyList,
         _getVbyListEx = _ASN1HEX.getVbyListEx,
 	_isASN1HEX = _ASN1HEX.isASN1HEX,
-	_BigInteger = BigInteger;
+	_BigInteger = BigInteger,
+	_BI_ONE = BigInteger.ONE;
+
+    var _validatePublicArgs = function(p, q, g, y) {
+	if (p == null || q == null || g == null || y == null)
+	    throw new Error("invalid DSA public key");
+
+	// FIPS 186-4 4.7: domain parameters and public key shall be validated.
+	if (_BI_ONE.compareTo(q) >= 0 || q.compareTo(p) >= 0)
+	    throw new Error("invalid DSA public key");
+	if (_BI_ONE.compareTo(g) >= 0 || g.compareTo(p) >= 0)
+	    throw new Error("invalid DSA public key");
+	if (_BI_ONE.compareTo(y) >= 0 || y.compareTo(p) >= 0)
+	    throw new Error("invalid DSA public key");
+	if (g.modPow(q, p).compareTo(_BI_ONE) != 0)
+	    throw new Error("invalid DSA public key");
+    };
+
     this.p = null;
     this.q = null;
     this.g = null;

Source: GitHub Commit Changes

Detection Methods for CVE-2026-4600

Indicators of Compromise

  • X.509 certificates with DSA public keys containing domain parameters where g=1 or y=1
  • DSA signatures where the r component equals 1
  • Certificate validation logs showing acceptance of certificates with malformed DSA parameters
  • Unexpected authentication successes for DSA-signed credentials

Detection Strategies

  • Implement software composition analysis (SCA) to identify jsrsasign versions below 11.1.1 in your codebase and dependencies
  • Monitor certificate validation operations for DSA certificates with suspicious domain parameter values
  • Use dependency scanning tools to detect vulnerable npm packages in Node.js applications
  • Review application logs for anomalous certificate or signature verification patterns

Monitoring Recommendations

  • Enable verbose logging for X.509 certificate verification operations in applications using jsrsasign
  • Implement alerting for any DSA signature verification operations until patching is complete
  • Monitor npm audit reports and security advisories for jsrsasign-dependent applications
  • Track package versions across development, staging, and production environments

How to Mitigate CVE-2026-4600

Immediate Actions Required

  • Upgrade jsrsasign to version 11.1.1 or later immediately
  • Audit all applications and dependencies that use jsrsasign for DSA signature or X.509 certificate verification
  • Review any certificates or signatures verified by vulnerable versions for potential forgery
  • Temporarily disable DSA-based signature verification if immediate patching is not possible

Patch Information

The vulnerability is fixed in jsrsasign version 11.1.1. The patch adds a _validatePublicArgs function that enforces FIPS 186-4 Section 4.7 compliant validation of DSA domain parameters and public keys. The fix ensures that:

  • Parameters p, q, g, and y are not null
  • q is greater than 1 and less than p
  • g is greater than 1 and less than p
  • y is greater than 1 and less than p
  • g^q mod p equals 1

For detailed patch information, see the GitHub Pull Request Discussion and the GitHub Commit Changes.

Workarounds

  • If immediate upgrade is not possible, implement application-layer validation of DSA domain parameters before passing to jsrsasign
  • Consider switching to alternative cryptographic algorithms (RSA, ECDSA) that are not affected by this specific vulnerability
  • Implement certificate pinning to restrict accepted certificates to known-good issuers
  • Deploy web application firewalls (WAF) rules to detect and block requests containing malformed DSA parameters
bash
# Upgrade jsrsasign to patched version
npm update jsrsasign@11.1.1

# Verify installed version
npm list jsrsasign

# Audit for vulnerabilities
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/TechJsrsasign

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:P/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-347
  • Technical References
  • GitHub Pull Request Discussion

  • Snyk Vulnerability Report
  • Vendor Resources
  • GitHub Gist Resource

  • GitHub Commit Changes
  • Related CVEs
  • CVE-2026-4598: Jsrsasign DoS Vulnerability

  • CVE-2026-4599: Jsrsasign Information Disclosure Flaw

  • CVE-2026-4601: Jsrsasign Information Disclosure Flaw

  • CVE-2026-4602: Jsrsasign Numeric Conversion 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