Bandit Level 10 β†’ Level 11

Base64 is type of ASCII encoding just like binary and hex, etc. It is typically used to encode non-printable data.

We can convert this base64 to the original text with a tool called base64 in Kali Linux, or on CyberChef.

cat data.txt | base64 -d
  • -d: Decode.

Here is the password for the next user.

Last updated