BookCars CVE-2026-36721
CRITICALSeverity by source
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Forged JWT needs only network access to the API with no auth or user interaction (AV:N/AC:L/PR:N/UI:N), and full account/admin takeover yields complete C/I/A impact.
Primary rating from Vendor (mitre).
CVSS VectorVendor: mitre
Lifecycle Timeline
3DescriptionCVE.org
A lack of cryptographic signature verification in the validateAccessToken function of bookcars v8.3 allows attackers to bypass authentication via a forged JWT token.
AnalysisAI
Authentication bypass in BookCars v8.3 lets remote attackers forge JWT tokens because the validateAccessToken function performs no cryptographic signature verification (CWE-347), allowing them to impersonate any user or administrator without credentials. The CVSS 9.8 rating reflects full compromise of confidentiality, integrity, and availability over the network. SSVC lists exploitation as POC with total technical impact and automatable=yes, though EPSS is very low (0.02%, 7th percentile) and it is not in CISA KEV; publicly available exploit code exists.
Technical ContextAI
BookCars is an open-source car rental platform (Node.js/React/MongoDB stack) that uses JSON Web Tokens (JWT) for session authentication. The vulnerability is a classic CWE-347 (Improper Verification of Cryptographic Signature): the validateAccessToken function decodes the JWT payload but fails to verify the token's HMAC/RSA signature against the server secret. Because the signature is the sole mechanism binding a token's claims to server-issued trust, skipping verification means the server accepts any attacker-crafted payload (e.g. an arbitrary user ID or admin role) as authentic. The supplied CPE string (cpe:2.3:a:n/a:n/a:*) is a placeholder and does not identify the vendor/product programmatically.
RemediationAI
No vendor-released patch version is identified at time of analysis; the only reference is a third-party vulnerability writeup (https://github.com/CC-T-454455/Vulnerabilities/tree/master/bookcars/vulnerability-2), so administrators should monitor the upstream BookCars repository for a fixed release and upgrade as soon as one is published. As a specific code-level fix, ensure validateAccessToken calls a verifying JWT API (e.g. jwt.verify with the server secret and an explicit algorithms allowlist) rather than a decode-only path, and reject tokens whose algorithm is 'none'. As compensating controls until patched: place the application behind an authenticating reverse proxy or WAF that enforces an independent session check, rotate the JWT signing secret and invalidate existing sessions, and restrict network exposure of the admin/API endpoints to trusted IPs - noting that IP restriction breaks legitimate remote/customer access and secret rotation forces all users to re-authenticate.
More in Jwt Attack
View allWhy is Microsoft republishing a CVE from 2013? We are republishing CVE-2013-3900 in the Security Update Guide to update
Authentication bypass in SimpleHelp 5.5.15 and prior (plus 6.0 pre-release builds) allows remote unauthenticated attacke
Authentication bypass in Fortinet FortiOS, FortiProxy, and FortiSwitchManager allows unauthenticated remote attackers to
ruby-saml provides security assertion markup language (SAML) single sign-on (SSO) for Ruby. Rated critical severity (CVS
ruby-saml provides security assertion markup language (SAML) single sign-on (SSO) for Ruby. Rated critical severity (CVS
The package jsrsasign before 10.5.25 are vulnerable to Improper Verification of Cryptographic Signature when JWS or JWT
A library injection vulnerability exists in Microsoft Teams (work or school) 24046.2813.2770.1094 for macOS. Rated criti
A library injection vulnerability exists in the WebView.app helper app of Microsoft Teams (work or school) 24046.2813.27
A library injection vulnerability exists in the com.microsoft.teams2.modulehost.app helper app of Microsoft Teams (work
The Ruby SAML library is for implementing the client side of a SAML authorization. Rated critical severity (CVSS 9.8), t
cosign is a container signing and verification utility. Rated critical severity (CVSS 9.8), this vulnerability is remote
Biscuit is an authentication and authorization token for microservices architectures. Rated critical severity (CVSS 9.8)
Same technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today