Cyber Resilience

CVE-2026-62386

Public PoC
Published
17 July 2026
Modified
23 July 2026
CVSS Score v4 8.2
Click a component to see what it means
Raw vectorCVSS:4.0/AV:N/AC:L/AT:P/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
EPSS Score 0.0027 19th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-62386 is a high-severity Use of HTTP Request With Sensitive Query String (CWE-598) vulnerability. Its CVSS base score is 8.2 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Unsecured Credentials (T1552); ranked at the 19th 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 IA-5 (Authenticator Management) and SC-8 (Transmission Confidentiality and Integrity) — see the control section below for these in your framework.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

The Grav API plugin (getgrav/grav-plugin-api) before 1.0.0-rc.16 accepts JWT access tokens through the ?token= URL query parameter on every API route (JwtAuthenticator::extractBearerToken fallback). Because tokens are embedded in URLs, they are logged verbatim in web server access logs, leaked via…

more

the Referer header, stored in browser history, and captured by upstream proxy and CDN logs, exposing valid admin access tokens. A leaked token grants unauthorized API access, including reading configuration and user data, creating admin accounts, modifying system settings, and deleting pages.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1552 Unsecured Credentials Credential Access
Adversaries may search compromised systems to find and obtain insecurely stored credentials.
T1078 Valid Accounts Stealth
Adversaries may obtain and abuse credentials of existing accounts as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion.
Why these techniques?

CVE enables exposure of JWT tokens in logs/URLs (T1552 Unsecured Credentials, esp. .001) and subsequent unauthorized API access via valid tokens (T1078 Valid Accounts).

Confidence: MEDIUM · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-16207Shared CWE-598
CVE-2026-26196Shared CWE-598
CVE-2025-13219Shared CWE-598
CVE-2026-44883Shared CWE-598
CVE-2025-0730Shared CWE-598
CVE-2026-10078Shared CWE-598
CVE-2026-26721Shared CWE-598
CVE-2026-25118Shared CWE-598
CVE-2025-41772Shared CWE-598
CVE-2026-22644Shared CWE-598

Affected Assets

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • IA-5 Authenticator Management
  • SC-8 Transmission Confidentiality and Integrity
  • AC-17 Remote Access
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V3.4.5
  • V14.2.1

Mitigating Controls (NIST 800-53 r5) AI

prevent

Requires protection of authenticators during storage and transmission, directly prohibiting exposure of JWT tokens via URL query parameters that leak into logs, Referer headers, and browser history.

prevent

Mandates cryptographic protection and integrity for sensitive data in transit, preventing use of query-string tokens that are inherently visible to intermediaries and logs.

AC-17 Remote Access partial match
prevent

Establishes secure remote-access mechanisms and token-handling requirements, eliminating the insecure ?token= fallback used by the Grav API plugin.

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 directly prevent embedding sensitive data in query strings as part of input-handling and data-flow design.

PR.DS-02 partial match
prevents

HTTPS encryption protects query strings in transit but does not address the root design flaw of placing sensitive data in URLs.

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.

detects

Security testing can detect sensitive data leakage via query strings.

mitigates

DLP solutions can detect and block sensitive data in URLs.

degrades

Network security controls can enforce HTTPS and block sensitive data in URLs.

prevents

Application security requirements should mandate avoiding sensitive data in query strings.

prevents

Secure architecture principles discourage exposing sensitive data in URLs.

prevents

Secure coding standards directly prohibit placing secrets in query parameters.

References