Cyber Cooperative CTF 2023
Babyhide [100 pts]
This little baby is figuring out how to computer! It looks like the baby hid some of my files though. I have no idea what to do, can you get my files back?
Running binwalk
on the file tells us there is a PDF file located at offset 0x1CAB6. We can write a Python program to extract it:
r = open('babyhide.jpeg', 'rb').read()
w = open('babyhide.pdf', 'wb')
w.write(r[0x1CAB6:])
w.close()
Opening up the pdf gets us the flag!
flag{baby_come_back}