[OverTheWire] Bandit Level 6 → Level 7
Level Goal
The password for the next level is stored somewhere on the server and has all of the following properties:
- owned by user bandit7
- owned by group bandit6
- 33 bytes in size
Commands you may need to solve this level
- ls
- cd
- cat
- file
- du
- find
- grep
My Answer (Step by step)
- 連線到伺服器並登入
ssh bandit6@bandit.labs.overthewire.org -p 2220
- 由於題目說檔案在伺服器的某個地方,故透過 cd 指令進入根目錄
cd /
- 透過 find 指令找到符合使用者名稱與群組條件的檔案
find / -user bandit7 -group bandit6
- 根據前面指令結果顯示的檔案路徑,透過 cat 指令即可查看 Level 7 密碼!
cat /var/lib/dpkg/info/bandit7.password