Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-whqg-ppgf-wp8c

Опубликовано: 08 дек. 2025
Источник: github
Github: Прошло ревью
CVSS3: 6.5

Описание

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' } } ); }

Пакеты

Наименование

astro

npm
Затронутые версииВерсия исправления

< 5.15.8

5.15.8

EPSS

Процентиль: 55%
0.00326
Низкий

6.5 Medium

CVSS3

Дефекты

CWE-647

Связанные уязвимости

CVSS3: 6.5
nvd
2 месяца назад

Astro is a web framework. Versions 5.15.7 and below have a double URL encoding bypass which 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 was fixed in v5.15.8, the fix is insufficient as it only decodes once. By using double-encoded URLs, attackers can still bypass authentication and access any route protected by middleware pathname checks. This issue is fixed in version 5.15.8.

EPSS

Процентиль: 55%
0.00326
Низкий

6.5 Medium

CVSS3

Дефекты

CWE-647