Bandit: level 0 → Level 1
登入
1
| $ ssh -p 2220 bandit0@bandit.labs.overthewire.org
|
密碼:bandit0
題目
關卡目標
下一關的密碼存儲在家目錄(~/)中的一個名為 readme
的檔案裡。使用這個密碼通過 SSH 登入到 bandit1
。每當你找到一個關卡的密碼時,使用 SSH(埠 2220)登入到該關卡,然後繼續遊戲。
你可能需要用到的命令
ls, cd, cat, file, du, find
解題思路
這題的題目很明瞭的告訴你密碼就在 ~/readme
檔案中。所以問題是要如何開啟這個檔案,獲取裡面儲存的密碼。
這題需要了解的電腦知識:
詳解
既然都知道是在 readme
檔案裡面了,就只要利用 cat
指令將檔案內容印出即可。
1
2
3
4
5
6
7
8
| bandit0@bandit:~$ cat readme
Congratulations on your first steps into the bandit game!!
Please make sure you have read the rules at https://overthewire.org/rules/
If you are following a course, workshop, walthrough or other educational activity,
please inform the instructor about the rules as well and encourage them to
contribute to the OverTheWire community so we can keep these games free!
The password you are looking for is: ZjLjTmM6FvvyRnrb2rfNWOZOTa6ip5If
|
於是我們就可以輸入
或著是按下鍵盤 Ctrl
+ D
,退出連線,然後連接到 bandit1
的帳號
1
| $ ssh -p 2220 bandit1@bandit.labs.overthewire.org
|
然後輸入剛剛拿到的密碼,進入 Level 1。
Level 1 → Level 2