Описание
Locutus has Prototype Pollution via proto Key Injection in unserialize()
Summary
The unserialize() function in locutus/php/var/unserialize assigns deserialized keys to plain objects via bracket notation without filtering the __proto__ key. When a PHP serialized payload contains __proto__ as an array or object key, JavaScript's __proto__ setter is invoked, replacing the deserialized object's prototype with attacker-controlled content. This enables property injection, for...in propagation of injected properties, and denial of service via built-in method override.
This is distinct from the previously reported prototype pollution in parse_str (GHSA-f98m-q3hr-p5wq, GHSA-rxrv-835q-v5mh) — unserialize is a different function with no mitigation applied.
Details
The vulnerable code is in two functions within src/php/var/unserialize.ts:
expectArrayItems() at line 358:
expectObject() at line 278:
Both functions create a plain object ({}) and assign user-controlled keys via bracket notation. When the key is __proto__, JavaScript's __proto__ setter replaces the object's prototype rather than creating a regular property. This means:
- Properties in the attacker-supplied prototype become accessible via dot notation and the
inoperator - These properties are invisible to
Object.keys(),JSON.stringify(), andhasOwnProperty() - They propagate to copies made via
for...inloops, becoming real own properties - The attacker can override
hasOwnProperty,toString,valueOfwith non-function values
Notably, parse_str in the same package has a regex guard against __proto__ (line 74 of src/php/strings/parse_str.ts), but no equivalent protection was applied to unserialize.
This is not global Object.prototype pollution — only the deserialized object's prototype is replaced. Other objects in the application are not affected.
PoC
Setup:
Step 1 — Property injection via array deserialization:
Verified output:
Step 2 — for...in propagation makes injected properties real:
Verified output:
Step 3 — Method override denial of service:
Verified output:
Step 4 — Object type (stdClass) is also vulnerable:
Step 5 — Confirm NOT global pollution:
Impact
- Property injection: Attacker-controlled properties become accessible on the deserialized object via dot notation and the
inoperator while being invisible toObject.keys()andhasOwnProperty(). Applications that useif (config.isAdmin)orif ('role' in config)patterns on deserialized data are vulnerable to authorization bypass. - Property propagation: When consuming code copies the object using
for...in(a common JavaScript pattern for object spreading or cloning), injected prototype properties materialize as real own properties, surviving all subsequenthasOwnPropertychecks. - Denial of service: The injected prototype can override
hasOwnProperty,toString,valueOf, and otherObject.prototypemethods with non-function values, causingTypeErrorwhen these methods are called on the deserialized object.
The primary use case for locutus unserialize is deserializing PHP-serialized data in JavaScript applications, often from external or untrusted sources. This makes the attack surface realistic.
Recommended Fix
Filter dangerous keys before assignment in both expectArrayItems and expectObject. Use Object.defineProperty to create a data property without triggering the __proto__ setter:
Alternatively, create objects with a null prototype to prevent __proto__ setter invocation entirely:
The Object.create(null) approach is more robust as it prevents the __proto__ setter from ever being triggered, regardless of key value.
Maintainer Reponse
Thank you for the report. This issue was reproduced locally against locutus@3.0.24, confirming that unserialize() was vulnerable to __proto__-driven prototype injection on the returned object.
This is now fixed on main and released in locutus@3.0.25.
Fix Shipped In
What the Fix Does
The fix hardens src/php/var/unserialize.ts by treating __proto__, constructor, and prototype as dangerous keys and defining them as plain own properties instead of assigning through normal bracket notation. This preserves the key in the returned value without invoking JavaScript's prototype setter semantics.
Tested Repro Before the Fix
- Attacker-controlled serialized
__proto__key produced inherited properties on the returned object Object.keys()hid the injected key while'key' in objstayed true- Built-in methods like
hasOwnPropertycould be disrupted
Tested State After the Fix in 3.0.25
- Dangerous keys are kept as own enumerable properties
- The returned object's prototype is not replaced
- The regression is covered by
test/custom/unserialize-prototype-pollution.vitest.ts
The locutus team is treating this as a real package vulnerability with patched version 3.0.25.
Ссылки
- https://github.com/locutusjs/locutus/security/advisories/GHSA-4mph-v827-f877
- https://nvd.nist.gov/vuln/detail/CVE-2026-33993
- https://github.com/locutusjs/locutus/pull/597
- https://github.com/locutusjs/locutus/commit/345a6211e1e6f939f96a7090bfeff642c9fcf9e4
- https://github.com/locutusjs/locutus/releases/tag/v3.0.25
Пакеты
locutus
< 3.0.25
3.0.25
Связанные уязвимости
Locutus brings stdlibs of other programming languages to JavaScript for educational purposes. Prior to version 3.0.25, the `unserialize()` function in `locutus/php/var/unserialize` assigns deserialized keys to plain objects via bracket notation without filtering the `__proto__` key. When a PHP serialized payload contains `__proto__` as an array or object key, JavaScript's `__proto__` setter is invoked, replacing the deserialized object's prototype with attacker-controlled content. This enables property injection, for...in propagation of injected properties, and denial of service via built-in method override. This is distinct from the previously reported prototype pollution in `parse_str` (GHSA-f98m-q3hr-p5wq, GHSA-rxrv-835q-v5mh) — `unserialize` is a different function with no mitigation applied. Version 3.0.25 patches the issue.
Locutus brings stdlibs of other programming languages to JavaScript for educational purposes. Prior to version 3.0.25, the `unserialize()` function in `locutus/php/var/unserialize` assigns deserialized keys to plain objects via bracket notation without filtering the `__proto__` key. When a PHP serialized payload contains `__proto__` as an array or object key, JavaScript's `__proto__` setter is invoked, replacing the deserialized object's prototype with attacker-controlled content. This enables property injection, for...in propagation of injected properties, and denial of service via built-in method override. This is distinct from the previously reported prototype pollution in `parse_str` (GHSA-f98m-q3hr-p5wq, GHSA-rxrv-835q-v5mh) — `unserialize` is a different function with no mitigation applied. Version 3.0.25 patches the issue.