Skip to main content

Pico CTF - Bases

· One min read
Marios Daskalas
Cyber Security Specialist

What does this bDNhcm5fdGgzX3IwcDM1 mean? I think it has something to do with bases.

Run the following command in the terminal.

echo 'bDNhcm5fdGgzX3IwcDM1' | base64 -d

Engulf the output inside picoCTF[output]

But, let's look a little deeper. The base64 command encodes binary strings into text representations using the base64 encoding format. So, base64 is just a format that is in a sense scrambled. The parameter -d just decodes from the base64 format to plain text, that we can read.

base64 Description