CVE-2025-30168: Parse Server has an OAuth login vulnerability
6.9
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.31165%
CWE
Published
3/21/2025
Updated
3/21/2025
KEV Status
No
Technology
JavaScript
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
parse-server | npm | ||
parse-server | npm |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from authentication adapters allowing both secure (code-based) and insecure (token-based) authentication flows. The insecure flow (enableInsecureAuth) didn't properly bind credentials to specific apps through client_id/client_secret validation, allowing credentials from one app to work in another. The BaseAuthCodeAdapter's beforeFind method is the primary point where insecure authentication was permitted. Specific adapters like GitHub and Google Play Games inherited this vulnerable behavior. The patches introduced strict code validation and made enableInsecureAuth opt-in to prevent cross-app credential reuse.