summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/proto_exploit.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/proto_exploit.js')
-rw-r--r--cli/tests/testdata/run/proto_exploit.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/tests/testdata/run/proto_exploit.js b/cli/tests/testdata/run/proto_exploit.js
deleted file mode 100644
index 8bd22cfe5..000000000
--- a/cli/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);