diff options
Diffstat (limited to 'tests/testdata/run/proto_exploit.js')
-rw-r--r-- | tests/testdata/run/proto_exploit.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/testdata/run/proto_exploit.js b/tests/testdata/run/proto_exploit.js deleted file mode 100644 index 8bd22cfe5..000000000 --- a/tests/testdata/run/proto_exploit.js +++ /dev/null @@ -1,5 +0,0 @@ -const payload = `{ "__proto__": null }`; -const obj = {}; -console.log("Before: " + obj); -Object.assign(obj, JSON.parse(payload)); -console.log("After: " + obj); |