Tags: script 

Rating:

```
import requests
import json

url = "http://workshop.web1.sunshinectf.org/start?answer=no_answer"
submit_url = "http://workshop.web1.sunshinectf.org/submit?answer="
response = requests.get(url)

while True:
_json = json.loads(response.text)
token = _json["token"]
hint = _json["featureHint"]
_type = _json["featureHintType"]

questions = _json['questions']
for question in questions:
if question[_type] == hint:
answer = eval(question['question'])
response = requests.get(submit_url+str(answer), headers={'Authorization':token})
print response.text
```