back

Bandit 10 - writeups

Sharing this writeups by following overthewire rules. This writing is for Level 10.

Bandit Level 10 → Level 11

ssh bandit10@bandit.labs.overthewire.org -p 2220
found password: akxW5ilL1JrxX9k3876mlN4Mgbpfjklu

bandit10@bandit:~$ ls
data.txt

bandit10@bandit:~$ cat data.txt | base64 -d
The password is D3D373fZKb0xxsDFSGs213pNVj3MJR

Explanation:

  • cat data.txt outputs the entire contents of data.txt (a Base64-encoded string).
  • | base64 -d pipes output to base64, decoding it from Base64 format to readable text.
Copyright © 2026 Mahidul Haque. This post is licensed under a CC BY-NC-ND 4.0 license. You may read, learn, and share links to this post for non‑commercial, educational purposes, as long as you give appropriate attribution. You may not copy, reproduce, adapt, distribute, or use this work commercially without explicit permission.