Skip to content

Instantly share code, notes, and snippets.

@R99bbit
Created April 2, 2024 06:32
Show Gist options
  • Select an option

  • Save R99bbit/e1806e720df8368bfc1301b6ecd8dc63 to your computer and use it in GitHub Desktop.

Select an option

Save R99bbit/e1806e720df8368bfc1301b6ecd8dc63 to your computer and use it in GitHub Desktop.
simple prototype pollution in js
let obj1 = {}
obj1.__proto__.attack = 'this object is polluted'
console.log(obj1.attack)
let obj2 = {}
console.log(obj2.attack)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment