Skip to content

S12cybersecurity/Idor-Hunter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Idor-Hunter

Python Script to Find Idor Vulnerabilities

This script is based in Autorize Extension from BurpSuite

https://github.com/Quitten/Autorize

How it Works?

This script has very simple operations:

#1 Step:

Send a request to the URL that the user has indicated with the user's cookie. Capture the response code and its Content-Length.

#2 Step:

It sends a request without a cookie and captures the response code and the Content-Lenght, to compare if the response is the same as with an authorized cookie.

#3 Step:

It sends one last request but with the modified cookie to check if the target verifies the cookie it receives.

#4 Step:

Finally, it will compare the answers and tell you the result.

Installation

git clone https://github.com/S12cybersecurity/Idor-Hunter

pip3 install requests

pip3 install argparse

Usage

Basic Usage:

python3 idor_hunter.py --url URL --cookie "Cookie: COOKIE"

image

With Proxy:

python3 idor_hunter.py --url URL --cookie "Cookie: COOKIE" --proxy http://127.0.0.1:8080

image

About

Python Script to Find Idor Vulnerabilities

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages