Level Goal

The password for the next level is stored in the only human-readable file in the inhere directory.

Tip: if your terminal is messed up, try the “reset” command.

Commands you may need to solve this level

  • ls
  • cd
  • cat
  • file
  • du
  • find

My Answer (Step by step)

  1. 連線到伺服器並登入
ssh bandit4@bandit.labs.overthewire.org -p 2220
  1. 透過 ls 指令會看到 inhere 資料夾
ls -al
  1. 透過 cd 指令進入 inhere 資料夾,並再次透過 ls 指令查看資料夾內容,可以發現多個檔案
cd inhere
ls -al
  1. 透過 find 與 cat 指令查看所有檔案即可看到 Level 5 密碼!
find . -name "*file*" -exec cat {} \;