This tool is based on LinkFinder https://github.com/GerbenJavado/LinkFinder you can read more about this tool here
Written in python, try to find sentry config on page or in sentry files by using regular expressions from LinkFinder and then check for blind SSRF in sentry.
sentrySSRF As LinkFinder supports Python 3.
$ git clone https://github.com/xawdxawdx/sentrySSRF.git
$ cd sentrySSRF
$ python setup.py install
sentrySSRF depends on the argparse
and jsbeautifier
Python modules. These dependencies can all be installed using pip.
$ pip3 install -r requirements.txt
- Exact js url:
python3 sentrySSRF.py -i https://example.com/1.js
- Input a domain to recursively parse all javascript located in a page to find config with sentry:
python3 sentrySSRF.py -i https://example.com/ -d
- Thanks to GerbenJavado