8 lines
218 B
Python
8 lines
218 B
Python
import requests
|
|
|
|
token = "47e2ef7aa5bf2bafc6cf95b31070c96f"
|
|
flag = input("input flag: ")
|
|
url = "https://ctf.bugku.com/pvp/submit.html?token=" + token + "&flag=" + flag
|
|
|
|
response = requests.get(url)
|
|
print(response.text) |