Toolset for detecting reflected xss in websites
Some simple tools which I’m using frequently to find XSS. Keep in mind: Do not trust scripts only! Sometimes the vulnerability is more complex and needs special treatment ;) Those scripts won’t find dom bases/dynamic XSS!
Because most tools I tested did not find simple reflected XSS - that’s why I hacked this script together. And it works… if you know how to use it.
How to execute:
python3 checkGivenParameters.py -url "http://victim/?param1=test¶m2=test2&foo=bar" -payload '[XSS"]'
This script…
Optional parameters:
Using the default payload may result in a lot of false results.
XSS on a starbucks subdomain
XSS on a General Motors subdomain
How to execute:
python3 parameterSearchInChunksSingleThread.py -u "http://victim/" --paramlist wordlists/params.txt --extended --extendedchar "<" --chunksize 75 --verbose --wait 5
This scripts…
Optional parameters:
Checking Brute Logic XSS Page with parameter wordlist…
Checking Brute Logic XSS Page without parameter wordlist…
Checking Starbucks subdomain (with xss):
Thanks to Daniel Miessler for the parameter wordlist: https://github.com/danielmiessler/SecLists
I added some custom parameters ;)