Try   HackMD

OverTheWire: Bandit 解題筆記|Level 10 → Level 11

上一關:OverTheWire: Bandit 解題筆記|Level 9 → Level 10

https://overthewire.org/wargames/bandit/bandit11.html

登入

$ ssh -p 2220 bandit10@bandit.labs.overthewire.org

密碼:FGUW5ilLVJrxX9kMYMmlN4MgbpfMiqey

題目

關卡目標
下一關的密碼存儲在文件data.txt中,該文件包含base64編碼數據。

你可能需要用到的命令
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd

有用的閱讀資料
Base64 on Wikipedia

解題思路

詳解

bandit10@bandit:~$ base64 -d data.txt
The password is 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM

OverTheWire: Bandit 解題筆記|Level 11 → Level 12