Katalog CVE

CVE-2026-46625

WysokieCVSS 7.5
Opublikowano: Zaktualizowano: Przetłumaczono: NVD NIST

Prawdopodobieństwo exploitacji (EPSS)

Podwyższone ryzyko
0.92%

Percentyl 58 - wyżej niż 58% wszystkich znanych CVE

Streszczenie

Biblioteka js-cookie przed wersją 3.0.7 ma podatność na zanieczyszczenie prototypu (prototype pollution) w funkcji `assign()`. Podczas kopiowania właściwości z obiektu pochodzącego z `JSON.parse`, atrybut `__proto__` może zostać skopiowany, co pozwala atakującemu na ustawienie własnych atrybutów w ciasteczkach, takich jak `domain`, `secure` czy `path`.

Ocena ryzyka

Atakujący może modyfikować atrybuty ciasteczek, które programista uważał za bezpieczne, co może prowadzić do przejęcia sesji lub ataków typu cross-site scripting (XSS).

Rekomendacja

Zaktualizuj js-cookie do wersji 3.0.7 lub nowszej.

Powiązane podatności

Oryginalny opis (angielski, źródło NVD)

JavaScript Cookie is a JavaScript API for handling cookies, client-side. Prior to version 3.0.7, js-cookie's internal assign() helper copies properties with for...in + plain assignment. When the source object is produced by JSON.parse, the JSON object's "__proto__" member is an own enumerable property, so the for…in enumerates it and the target[key] = source[key] write triggers the Object.prototype.__proto__ setter on the fresh target ({}). The result is a per-instance prototype hijack: Object.prototype itself is untouched, but the merged attributes object now inherits attacker-controlled keys. Because the consuming set() function then enumerates the merged object with another for...in, every key the attacker placed on the polluted prototype lands in the resulting Set-Cookie string as an attribute pair. The attacker can set domain=, secure=, samesite=, expires=, and path= on cookies whose attributes the developer thought were locked down. This issue has been patched in version 3.0.7.

Dane podatności pochodzą z NVD (NIST) · CISA KEV · EPSS