Last active
September 3, 2016 08:50
-
-
Save seadog007/31b04129421d1bbc2a20 to your computer and use it in GitHub Desktop.
Auto Cracking Bahamut Quiz
This file contains 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 | |
for i in {$1..$2} | |
do | |
echo $i | |
echo "\n" | |
for j in {1..4} | |
do | |
curl -X GET "http://forum.gamer.com.tw/ajax/quiz_answer.php?sn=$i&o=$j" \ | |
-H "Cookie: BAHAID=$3; BAHARUNE=$4;" \ | |
-m 30 | |
done | |
sleep 0.1 | |
echo "\n" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment