Last active
December 23, 2020 22:01
-
-
Save xElkomy/a2d4ad59e2cf9bd95acd66b84ab359bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# the script will test for PUT upload method against all the hosts | |
# Thanks shibli2700 https://github.com/shibli2700/Rekon/blob/master/puttest.sh | |
for domain in $(cat $1) | |
do | |
curl -s -o /dev/null -X PUT -d "hello world" "${domain}/evil.txt" | |
done | |
#My Script for check https://github.com/xElkomy/Workflow-Bug-Bounty/blob/master/Fuzz-xElkomy.py | |
python3 Fuzz-xElkomy.py hosts.txt '/evil.txt' 'hello world' > results-putcheck.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment