Rating:
## Forensics/Forenscript
It's thundering outside and you are you at your desk having solved 4 forensics challenges so far. Just pray to god you solve this one. You might want to know that sometimes too much curiosity hides the flag.
with open("a.bin", "rb") as data:
with open("recovered", "ab") as output:
while data:
bytes = data.read(4)
if bytes == b'':
break
print(bytes[::-1])
output.write(bytes[::-1])
`file a.bin`

file recovered

binwalk -e recovered




FLAG: `flag{scr1pt1ng_r34lly_t0ugh_a4n't_1t??}`