CVE Catalog

CVE-2026-35209

HighCVSS 7.5
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.40%

32th percentile - higher than 32% of all known CVEs

Summary

The defu library before version 6.1.5 is vulnerable to prototype pollution via unsanitized user input passed as the first argument to defu(). An attacker can use the __proto__ key to override default values.

Risk Assessment

Prototype pollution can allow an attacker to alter object behavior in the application, potentially leading to privilege escalation or code injection.

Recommendation

Upgrade the defu library to version 6.1.5 or later.

Related vulnerabilities

Original NVD description (English source)

defu is software that allows uers to assign default properties recursively. Prior to version 6.1.5, applications that pass unsanitized user input (e.g. parsed JSON request bodies, database records, or config files from untrusted sources) as the first argument to `defu()` are vulnerable to prototype pollution. A crafted payload containing a `__proto__` key can override intended default values in the merged resul. The internal `_defu` function used `Object.assign({}, defaults)` to copy the defaults object. `Object.assign` invokes the `__proto__` setter, which replaces the resulting object's `[[Prototype]]` with attacker-controlled values. Properties inherited from the polluted prototype then bypass the existing `__proto__` key guard in the `for...in` loop and land in the final result. Version 6.1.5 replaces `Object.assign({}, defaults)` with object spread (`{ ...defaults }`), which uses `[[DefineOwnProperty]]` and does not invoke the `__proto__` setter.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS