Skip to content

Pachinko

Repeated requests (and patience) worked:

while True:
    response = requests.post(url+'check', json={"circuit":[]})
    flag = response.json().get('flag')
    print(flag)
    if "picoCTF" in flag:
        break