Skip to content

morph3/ppchecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ppchecker

Simple Prototype Pollution Checker tool.

Executes some basic prototype pollution payloads and checks if the site is vulnerable to prototype pollution. You can also feed urls with parameter and check if the parameters are vulnerable as well.

Everytime this script runs, it starts a browser with puppeter. It starts opening new tabs with urls with the limit of the given concurrency. After the prototype pollution check is completed, tab gets terminated. This approach is not very good on big wordlists as tabs may have issues when loading. Extereme amounts of tabs being opened might occur and therefore a crash might happen. So if you want to feed this tool a big wordlist please take a look at Additional section. Also reachable urls are prefered because of the reason I explained.

Example Run

asciicast

Example Usages

python3 ppchecker.py -l urls.txt -c 30
python3 ppchecker.py -l urls.txt -c 20 -d 
python3 ppchecker.py -u http://ctf.m3.wtf/pplab3.html -c 20
python3 ppchecker.py -u 'https://morph3sec.com/index.html?foo=' -c 20

Additional

If you are going to work on big wordlists I suggest you to use the command below to distribute the load equally.

cat urls.txt | xargs -I% -P 50 sh -c 'python3 ppchecker.py -u "%"'

About

Yet another prototype pollution checker tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages