상세 컨텐츠

본문 제목

Bandit Level 0 -> Level 1

ENG/Bandit

by jaws99 2025. 7. 23. 03:17

본문

반응형

Level Goal

The password for the next level is stored in a file called readme located in the home directory. Use this password to log into bandit1 using SSH. Whenever you find a password for a level, use SSH (on port 2220) to log into that level and continue the game.

 

Commands you may need to solve this level

ls , cd , cat , file , du , find

  • `ls` stands for list. Lists the contents of a directory, displaying the names of files and directories.
  • `cat` stands for concatenate. Displays the contents of a file or concatenates multiple files.
  • For this level, you’ll primarily use ls and cat. The other commands may be useful in later levels.

 

Write up

After logging into the Bandit server as `bandit0`, we start in the home directory by default. Use the `ls` command to list the files in the current directory:
bandit0@bandit:~$ ls
readme

 

 

This shows a file named `readme`. To view its contents, use the `cat` command:

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

 

The readme file contains the password for the next level. Use this password to log in for Level 1.

 

 

Next Level : Level 1 -> 2

반응형

'ENG > Bandit' 카테고리의 다른 글

Bandit Level 0  (3) 2025.07.23
Bandit Level 12 -> Level 13  (2) 2024.10.03
Bandit Level 11 -> Level 12  (0) 2024.09.13
Bandit Level 10 -> Level 11  (0) 2024.09.11
Bandit Level 9 -> Level 10  (1) 2024.09.09

관련글 더보기