SecBlog

A Simple b(log) of interesting things

Bandit

Level 10

The password for the next level is stored in the file data.txt, which contains base64 encoded data


Solution

Our task is pretty simple: decode base64 to reveal password.


Final Command:

$ base64 -d data.txt             # -d for decoding


Solution Screenshot

Level 10 Image


Takeaway

  - RTFM


« Back