Level 10 → 11
Last updated
Last updated
The password for the next level is stored in the file data.txt, which contains base64 encoded data
List the content of the current directory:
This confirms the presence of the data.txt file.
Display the content of the data.txt file:
This revealed a string of base64 encoded data.
To decode the base64 data, the following command was used:
base64
: The command used for encoding/decoding base64 data
-d
: Flag specifying decode mode (as opposed to encode)
data.txt
: The input file containing the encoded data
The password retrieved: dtR173fZKb0RRsDFSGsg2RWnpNVj3qRr
Access the next level:
Enter the password when prompted.
Base64 is a common encoding scheme used to represent binary data in ASCII string format
The base64
command in Unix systems can both encode and decode base64 data
Simple command-line tools can often decode common data formats without need for specialized software
-- Othmane