You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These should use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty.
lib/_debugger.js: if (proto.hasOwnProperty(i) && ignored.indexOf(i) === -1) {
lib/module.js: if (packageCache.hasOwnProperty(requestPath)) {
lib/querystring.js: if (!obj.hasOwnProperty(k)) {
lib/repl.js: if (!uniq.hasOwnProperty(c)) {
Causes server crashes when jerks request /foo?hasOwnProperty=x&y=z
These should use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty.
Causes server crashes when jerks request
/foo?hasOwnProperty=x&y=z