https://overthewire.org/wargames/bandit/bandit1.html
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
아주 쉬운 레벨이다.
bandit0@bandit:~$ [1]
bandit0@bandit:~$ ls [2]
readme
bandit0@bandit:~$ file readme [3]
readme: ASCII text
bandit0@bandit:~$ cat readme [4]
b??????????????????????????????
bandit0@bandit:~$
ls
로 확인하니 readme 파일이 있다.file
로 찍어보니 ASCII text 파일이다.cat
으로 열어보니 이상한 문자열이 있다. 왠지 키파일처럼 보인다.다음 단계로 넘어가자.
ssh -p 2220 bandit1@bandit.labs.overthewire.org
/home
에 위치한다.cd ~
를 입력하면 자신의 홈 디렉토리로 바로 이동한다./
경로에서 cd ~
명령어를 이용하여 홈 디렉토리로 바로 이동했다.pwd
(print working directory): 현재 경로 출력bandit0@bandit:~$ cd /
bandit0@bandit:/$ pwd
/
bandit0@bandit:/$ cd ~
bandit0@bandit:~$
bandit0@bandit:~$ cd /home
bandit0@bandit:/home$ ls
bandit0 bandit13 bandit18 bandit22 bandit27 bandit29-git bandit31-git bandit6
bandit1 bandit14 bandit19 bandit23 bandit27-git bandit3 bandit32 bandit7
bandit10 bandit15 bandit2 bandit24 bandit28 bandit30 bandit33 bandit8
bandit11 bandit16 bandit20 bandit25 bandit28-git bandit30-git bandit4 bandit9
bandit12 bandit17 bandit21 bandit26 bandit29 bandit31 bandit5
bandit1@bandit:/home$
bandit0@bandit:~$ file readme
readme: ASCII text
bandit0@bandit:~$ cat readme
b??????????????????????????????
bandit0@bandit:~$ ls
readme
bandit0@bandit:~$ file redme
redme: cannot open `redme' (No such file or directory)
bandit0@bandit:~$
이렇게뜨는데 해결책이 있나요?