mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
chore: deprecate run itests (#26444)
This commit is contained in:
parent
f9a05068d6
commit
89f0b796bd
1656 changed files with 7496 additions and 1936 deletions
5
tests/specs/run/proto_exploit/proto_exploit.js
Normal file
5
tests/specs/run/proto_exploit/proto_exploit.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
const payload = `{ "__proto__": null }`;
|
||||
const obj = {};
|
||||
console.log("Before: " + obj);
|
||||
Object.assign(obj, JSON.parse(payload));
|
||||
console.log("After: " + obj);
|
Loading…
Add table
Add a link
Reference in a new issue