Skip to content

Instantly share code, notes, and snippets.

@xElkomy
Last active December 23, 2020 22:01
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xElkomy/a2d4ad59e2cf9bd95acd66b84ab359bf to your computer and use it in GitHub Desktop.
Save xElkomy/a2d4ad59e2cf9bd95acd66b84ab359bf to your computer and use it in GitHub Desktop.
#!/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