Skip to content

Instantly share code, notes, and snippets.

@seadog007
Last active September 3, 2016 08:50
Show Gist options
  • Save seadog007/31b04129421d1bbc2a20 to your computer and use it in GitHub Desktop.
Save seadog007/31b04129421d1bbc2a20 to your computer and use it in GitHub Desktop.
Auto Cracking Bahamut Quiz
#!/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