interencdec picoCTF2024 | Write-up
I’m currently participating in the picoCTF2024 event and decided to share the CTFs that I find interesting here as well.
today I’m solving this one from the Cryptography category.

Description
Can you get the real meaning from this file. Download the file here.
Hints
Engaging in various decoding processes is of utmost importance
Solution
if we open the file, we get the following string:
YidkM0JxZGtwQlRYdHFhR3g2YUhsZmF6TnFlVGwzWVROclgyMHdNakV5TnpVNGZRPT0nCg==
this looks like a base64 string, so let’s try and decode it. the result would be this:
b'd3BqdkpBTXtqaGx6aHlfazNqeTl3YTNrX20wMjEyNzU4fQ=='
However, the result still looks like a base64 encoded string. it seems like the data might have been encoded multiple times. so we decode it again. Note that I removed b’’ from the string and decoded the rest:
wpjvJAM{jhlzhy_k3jy9wa3k_m0212758}
now this format looks like our flag, so we’re close! let’s try decoding it using Caesar cipher. I used this site which generates all the possible outputs.

flag: picoCTF{caesar_d3cr9pt3d_f0212758}
if you’re looking for more solutions, make sure to visit this repo.
Did you find this helpful? If you liked it, please give it a thumbs up and follow for more! Feel free to ask any questions or suggest CTF challenges for future posts.
Happy hacking!





