That's Epoch
Home >
Cyber Defense CTF > Forensics
Back <> Next
Learning about the Y2K38 problem will lead you to a way to decode the flag. 1721387471
The flag is in the format leveleffect{dd MMMM yyyy HH:mm:ss}
For this challenge we simply need to convert the given epoch timestamp into it’s UTC format. We can easily do this in bash:
date -u -d @1721387471
Simply wrap the flag in the leveleffect{} wrapper in the way described and that’s it!