renan@home:~$

  • Understanding BOLA (Broken Object Level Authorization)

    What is object level authorization? Object level authorization is a mechanism by which a developer ensures that users can only access the specific objects they are authorized to interact with. But how is this achieved in practice? Let’s suppose the developer has an endpoint that retrieves a user’s profile data....

  • Understanding prototype pollution

    What is a prototype? To comprehend prototype pollution, it is crucial to understand the concept of a prototype. So, let’s dive right into it. A prototype is a mechanism that allows objects to inherit features, properties, and various kinds of data from one another. Let me illustrate this with an...

  • Hello world

    (() => { alert(`Hello world!`) })();