CVE-2025-66202
MEDIUM6.5EPSS 0.30%Astro has an Authentication Bypass via Double URL Encoding, a bypass for CVE-2025-64765
描述
# Authentication Bypass via Double URL Encoding in Astro ## Bypass for CVE-2025-64765 / GHSA-ggxq-hp9w-j794 --- ### Summary A **double URL encoding bypass** allows any unauthenticated attacker to bypass path-based authentication checks in Astro middleware, granting unauthorized access to protected routes. While the original CVE-2025-64765 (single URL encoding) was fixed in v5.15.8, the fix is insufficient as it only decodes once. By using double-encoded URLs like `/%2561dmin` instead of `/%61dmin`, attackers can still bypass authentication and access protected resources such as `/admin`, `/api/internal`, or any route protected by middleware pathname checks. ## Fix A more secure fix is just decoding once, then if the request has a %xx format, return a 400 error by using something like : ``` if (containsEncodedCharacters(pathname)) { // Multi-level encoding detected - reject request return new Response( 'Bad Request: Multi-level URL encoding is not allowed', { status: 400, headers: { 'Content-Type': 'text/plain' } } ); } ```
受影響套件(1)
- npm/astrofrom 0, < 5.15.8
CVSS 分數
| 來源 | 版本 | 嚴重程度 | 向量 |
|---|---|---|---|
| osv | CVSS 3.1 | MEDIUM6.5 | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N |
參考連結(6)
- ADVISORYhttps://nvd.nist.gov/vuln/detail/CVE-2025-64765
- ADVISORYhttps://nvd.nist.gov/vuln/detail/CVE-2025-66202
- PATCHhttps://github.com/withastro/astro
- WEBhttps://github.com/withastro/astro/commit/6f800813516b07bbe12c666a92937525fddb58ce
- WEBhttps://github.com/withastro/astro/security/advisories/GHSA-ggxq-hp9w-j794
- WEBhttps://github.com/withastro/astro/security/advisories/GHSA-whqg-ppgf-wp8c