Coding Time
Description
This challenge will require you to code a line or two to get the flag.
No, Not Code :(
We are given a Python file passcracker.py
As outlined by the NOTE
, our goal is manipulate passw0rd
to somehow to get the content in between the curly braces of the flag
Just from appearances, passw0rd
looks too long to be the contents of the flag. It also doesn't look like a cipher or hash. The underscores seem to imply that some of these characters are the actual characters of the flag, so we can guess that we need to extract the characters for the flag
With Python, we can get every nth letter with [::n]
at the end of the string. Testing some numbers, we find that we need every 3rd letter, which we can concatenate to make the flag
Flag
retroCTF{1337_p455w0rd_cr4ck3r_68djvs98}
Last updated