Prototype Pollution
Understanding JavaScript Prototype Pollution
JavaScript Prototypes and Inheritance
What is an Object in JavaScript?
const user = {
username: "wiener",
userId: 01234,
isAdmin: false
}user.username // "wiener"
user['userId'] // 01234What is a Prototype in JavaScript?
How Does Object Inheritance Work in JavaScript?

Modifying Prototypes
What is Prototype Pollution?

How Do Prototype Pollution Vulnerabilities Arise?
Prototype Pollution Sources
Prototype Pollution Sinks
Prototype Pollution Gadgets
Resources
Last updated