mobile wallpaper 1mobile wallpaper 2mobile wallpaper 3
128 字
1 分鐘
[OverTheWire] Bandit Level 4 → Level 5
2025-01-22

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 {} \;
分享

如果這篇文章對你有幫助,歡迎分享給更多人!

[OverTheWire] Bandit Level 4 → Level 5
https://m21248074.github.io/blog/posts/2025-01-22-post145357/
作者
Cavey (凱維)
發布於
2025-01-22
許可協議
CC BY-NC-SA 4.0

部分資訊可能已經過時

目錄