Last updated 4 years ago
robots.txt gives a har file link where we can see a log file after mashing keyboard i saw that the post request contained a "char" parameter so i extracted all of those from the har file and then converted those values to ascii to get flag
har
script below:
o = "" with open("export.har","r") as f: for line in f: if '"text": "{' in line: o += chr(int(line[31:33])) print(o)