Cyber Resilience

CVE-2025-69624

Memory Safety in Gonitro Nitro Pdf Pro 14.41.1.4

Published
13 April 2026
Modified
05 July 2026
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.0043 35th percentile
Risk Priority 57 floored blend · peak EPSS

Summary

CVE-2025-69624 is a high-severity NULL Pointer Dereference (CWE-476) vulnerability in Gonitro Nitro Pdf Pro. Its CVSS base score is 7.5 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Endpoint Denial of Service (T1499); ranked at the 35th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to SA-11 (Developer Testing and Evaluation) and SA-15 (Development Process, Standards, and Tools) — 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-2025-69624 is a NULL pointer dereference vulnerability (CWE-476) in the JavaScript implementation of the app.alert() function within Nitro PDF Pro for Windows version 14.41.1.4. The flaw arises when app.alert() is invoked with more than one argument and the first argument evaluates to null, as in the case of app.alert(app.activeDocs, true) when app.activeDocs is null. This routes the call through a fallback path for non-string arguments, where js_ValueToString() produces an invalid string pointer from the null value. That pointer is then passed without validation to JS_GetStringChars(), resulting in dereference of an invalid address and an access violation that crashes the application upon opening a crafted PDF.

The vulnerability carries 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), indicating it is exploitable over a network with low attack complexity, no privileges or user interaction required, and unchanged scope. Remote, unauthenticated attackers can deliver a specially crafted PDF file that triggers the NULL pointer dereference, achieving denial of service through abrupt termination of the Nitro PDF Pro application.

For details on mitigations, patches, or advisories, refer to the vendor reference at http://nitro.com.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

Nitro PDF Pro before 14.43 for Windows contains a NULL pointer dereference vulnerability in the JavaScript implementation of app.alert(). When app.alert() is called with more than one argument and the first argument evaluates to null (for example, app.alert(app.activeDocs, true) when…

more

app.activeDocs is null), the engine routes the call through a fallback path intended for non-string arguments. In this path, js_ValueToString() is invoked on the null value and returns an invalid string pointer, which is then passed to JS_GetStringChars() without validation. Dereferencing this pointer leads to an access violation and application crash when opening a crafted PDF. For example, 14.41.1.4 and 14.42.0.34 have been reported as vulnerable.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

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.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.
T1489 Service Stop Impact
Adversaries may stop or disable services on a system to render those services unavailable to legitimate users.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2025-66769Same product: Gonitro Nitro Pdf Pro
CVE-2025-69627Same product: Gonitro Nitro Pdf Pro
CVE-2024-23441Same product: Microsoft Windows
CVE-2023-41234Same product: Microsoft Windows
CVE-2025-30300Same product: Microsoft Windows
CVE-2025-47119Same product: Microsoft Windows
CVE-2025-30301Same product: Microsoft Windows
CVE-2024-1443Same product: Microsoft Windows
CVE-2026-23565Same product: Microsoft Windows
CVE-2023-1186Same product: Microsoft Windows

Affected Assets

gonitro
nitro pdf pro
14.41.1.4

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

Developer testing and evaluation (including static analysis) directly finds null-dereference bugs before deployment.

Documented development standards and tools can enforce null-safety rules and safe pointer usage.

Engineering principles can mandate defensive coding such as explicit null checks before dereference.

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 (static analysis, code review, safe coding standards) directly prevent NULL dereference bugs during development.

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 detect NULL dereference defects before release.

prevents

Secure SDLC mandates defensive coding practices that can prevent NULL dereferences.

prevents

Application security requirements can specify input validation and pointer-safety rules.

prevents

Secure architecture principles encourage defensive design that avoids unsafe pointer use.

prevents

Secure coding standards directly require NULL-pointer checks and safe dereference patterns.

References