Я пытаюсь отправить несколько файлов cookie на URL-адрес, пока не получу правильный, и я не знаю, почему мой текущий код не работает
Я посмотрел на существующие ответы для отправки куки на URL, но ни один из них, похоже, не работает в моем случае
Комментарии в коде являются инструкциями для задания
# Write a script that can guess cookie values
# and send them to the url http://127.0.0.1:8082/cookiestore
# Read the response from the right cookie value to get the flag.
# The cookie id the aliens are using is alien_id
# the id is a number between 1 and 75
import urllib2
req = urllib2.Request('http://127.0.0.1:8082/cookiestore')
for i in range(75):
req.add_header('alien_id', i)
response = urllib2.urlopen(req)
html = response.read()
print(html)
Я ожидал, что одна из итераций выведет что-то другое, но они все одинаковые