Cyber Resilience

CVE-2026-33891

DoS in Digitalbazaar Forge ≤ 1.3.3

Public PoCDoS
Published
27 March 2026
Modified
15 July 2026
Patch / advisory
CVSS Score v3.1 7.5
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
EPSS Score 0.0060 45th percentile
Risk Priority 58 floored blend · peak EPSS

Summary

CVE-2026-33891 is a high-severity Infinite Loop (CWE-835) vulnerability in Digitalbazaar Forge. Its CVSS base score is 7.5 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Application or System Exploitation (T1499.004); ranked at the 45th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified map to SA-11 (Developer Testing and Evaluation) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

CVE-2026-33891 is a Denial of Service (DoS) vulnerability in the node-forge library, a JavaScript implementation of Transport Layer Security also known as Forge. Versions prior to 1.4.0 are affected due to an infinite loop in the BigInteger.modInverse() function, inherited from the bundled jsbn library. When modInverse() receives a zero value as input, the internal Extended Euclidean Algorithm fails to reach its exit condition, causing the process to hang indefinitely and consume 100% CPU. The vulnerability is rated with a CVSS v3.1 base score of 7.5 (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H) and maps to CWE-835 (Infinite Loop).

Attackers can exploit this vulnerability remotely over the network with low complexity and no privileges or user interaction required. By supplying a zero value to the modInverse() function in applications using vulnerable node-forge versions, an unauthenticated attacker can trigger the infinite loop, leading to complete resource exhaustion and denial of service on the targeted process or server.

The node-forge security advisory (GHSA-5m6q-g25r-mvwx) and the patching commit (9bb8d67b99d17e4ebb5fd7596cd699e11f25d023) confirm that upgrading to version 1.4.0 resolves the issue by fixing the loop condition in the Extended Euclidean Algorithm implementation. Security practitioners should audit dependencies for node-forge <1.4.0 and apply the update promptly, especially in TLS-handling Node.js applications.

EU & UK References

Vulnerability Data

Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.4.0, a Denial of Service (DoS) vulnerability exists in the node-forge library due to an infinite loop in the BigInteger.modInverse() function (inherited from…

more

the bundled jsbn library). When modInverse() is called with a zero value as input, the internal Extended Euclidean Algorithm enters an unreachable exit condition, causing the process to hang indefinitely and consume 100% CPU. Version 1.4.0 patches the issue.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1499.004 Application or System Exploitation Impact
Adversaries may exploit software vulnerabilities that can cause an application or system to crash and deny availability to users.
T1499 Endpoint Denial of Service Impact
Adversaries may perform Endpoint Denial of Service (DoS) attacks to degrade or block the availability of services to users.
T1499.003 Application Exhaustion Flood Impact
Adversaries may target resource intensive features of applications to cause a denial of service (DoS), denying availability to those applications.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2025-66031Same product: Digitalbazaar Forge
CVE-2026-33896Same product: Digitalbazaar Forge
CVE-2026-33895Same product: Digitalbazaar Forge
CVE-2025-12816Same product: Digitalbazaar Forge
CVE-2025-66030Same product: Digitalbazaar Forge
CVE-2026-33894Same product: Digitalbazaar Forge
CVE-2026-33814Shared CWE-606, CWE-835
CVE-2026-23298Shared CWE-835
CVE-2025-66252Shared CWE-835
CVE-2026-2219Shared CWE-835

Affected Assets

digitalbazaar
forge
≤ 1.3.3

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V17.3.2
  • V4.3.1

Mitigating Controls (NIST 800-53 r5) AI

Developer testing and evaluation can discover unreachable loop exit conditions through static analysis, fuzzing, or execution tracing.

Input validation directly stops untrusted values from reaching loop conditions without bounds or sanity checks.

Flaw remediation processes identify and correct infinite-loop defects reported from testing or operations.

Requiring documented development processes and secure coding standards reduces introduction of loops whose termination conditions are unreachable.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices (reviews, testing, static analysis) directly prevent introduction of infinite-loop defects.

ID.RA-01 partial match
prevents

Static analysis and vuln scanning during asset assessment can detect unreachable loop exits.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

finds

Security testing can uncover infinite-loop conditions before release.

prevents

Secure development life cycle mandates practices that can detect and prevent infinite-loop defects.

prevents

Application security requirements can specify loop-termination rules, indirectly reducing the weakness.

prevents

Secure coding standards directly address loop termination and prevent infinite loops.

none

Secure architecture principles encourage designs that avoid unreachable exit conditions.

none

Change management can require review of loop logic when code is modified.

References