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
const { load, safeLoad } = require('js-yaml') const yamlText = '__proto__: { evil: true }' const a = load(yamlText) const b = safeLoad(yamlText) console.log(a.evil, b.evil)
Expect: undefined undefined Received: true true
undefined undefined
true true
If I use js-yaml to process user's input, it would allow malicious users to inject object prototype into my server.
js-yaml
The text was updated successfully, but these errors were encountered:
defineProperty
Sorry, something went wrong.
No branches or pull requests
Expect:
undefined undefined
Received:
true true
If I use
js-yaml
to process user's input, it would allow malicious users to inject object prototype into my server.The text was updated successfully, but these errors were encountered: