/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/run/proto_exploit/proto_exploit.js
5 строк
159 B
Bartek Iwańczuk
Revert "fix(runtime): throw a descriptive error for disabled __proto__ accessor (#34730)" (#34772)
03 июн 2026, 09:42
Не верифицирован
03 июн 2026, 09:42
ee3040e
Код
Авторство
О чём код?
const payload = `{ "__proto__": null }`; const obj = {}; console.log("Before: " + obj); Object.assign(obj, JSON.parse(payload)); console.log("After: " + obj);