-
bandit 0 -> 1wargame/bandit 2024. 4. 30. 04:06
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.
다음 레벨로 가기 위한 비밀번호는 홈 디렉토리의 readme라는 파일 안에 저장되어 있다고 한다. 이 비밀번호를 획득해서 이것을 ssh로 bandit1으로 가기 위해서 사용하라고 한다. level 0와 마찬가지로 ssh를 이용하고 port는 2220이라고 한다.
여기서 힌트로 준 명령어는 다음과 같다.
ls, cd, cat, file, du, find
여기서는 ls와 cat만 사용해도 해결이 가능하다
지금 접속했을 때 위치 자체가 바로 홈 디렉토리이다. pwd명령어를 입력해서 실제 위치를 출력해보자
그리고 ls 를 입력하면 그 위치에 존재하는 파일들의 리스트를 볼 수 있다.
그러면 출력되는 readme파일이 한개 있다. 이것을 cat readme 명령어를 사용해서 비밀번호를 획득해보자.
이 비밀번호를 어딘가 저장해서 백업해놓고 다음 레벨로 로그인 하면 미션 성공이다.
'wargame > bandit' 카테고리의 다른 글
bandit 4 -> 5 (0) 2024.04.30 bandit 3 -> 4 (0) 2024.04.30 bandit 2 -> 3 (0) 2024.04.30 bandit 1 -> 2 (0) 2024.04.30 bandit 0 (0) 2024.04.23