[OverTheWire] Bandit Level 3 → Level 4
Level Goal
The password for the next level is stored in a hidden file in the inhere directory.
Commands you may need to solve this level
- ls
- cd
- cat
- file
- du
- find
My Answer (Step by step)
- 連線到伺服器並登入
ssh bandit3@bandit.labs.overthewire.org -p 2220
- 透過 ls 指令會看到 inhere 資料夾
ls -al
- 透過 cd 指令進入 inhere 資料夾,並再次透過 ls 指令查看資料夾內容,可以發現 …Hiding-From-You 檔案
cd inhere
ls -al
- 透過 cat 指令讀取 …Hiding-From-You 檔案即可看到 Level 4 密碼!
cat ./...Hiding-From-You