You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- #!/bin/bash
-
- # Prompt for URL prefix
- read -p "Enter the prefix: " prefix
-
- # Define the path
- PATH='search?q=apple'
-
- /usr/bin/curl -s -S "https://$prefix.gslab-juiceshop.com/$PATH" \
- -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36' \
- -H 'waf_exception: <iframe src="javascript:alert(`Perf Tool Test`)">' \
- --compressed \
- -D - \
- -o /dev/null
- echo " Finished"
|