Level Goal
The password for the next level is stored in a hidden file in the inhere directory.
Commands you may need to solve this level
ls , cd , cat , file , du , find
→ inhere이라는 이름의 디렉토리 속 숨겨진 파일을 읽어야 하는 문제
풀이
1. pwd, ls 사용해서 현재 위치와 내용 파악
bandit3@bandit:~$ pwd
/home/bandit3
bandit3@bandit:~$ ls
inhere
- inhere 디렉토리를 발견했으니 안으로 들어가서 내용을 파악하자.
2. ls -a 명령어
bandit3@bandit:~$ cd inhere
bandit3@bandit:~/inhere$ ls -a
. .. .hidden
- cd로 inhere 디렉토리에 접근한 후 ls -a 로 숨겨진 파일까지 보이게 내용을 출력했다.
3. cat으로 읽기
bandit3@bandit:~/inhere$ cat .hidden
- 파일이 숨겨진 경우 앞에 ‘.’을 붙여 읽을 수 있다.
4. bandit4 계정에 로그인
다른 username으로 접속하기 위해 먼저 기존 원격접속을 해제하고 재접속한다.
bandit3@bandit:~$ exit
logout
Connection to bandit.labs.overthewire.org closed.
┌──(root㉿kali)-[/home/kali]
└─# ssh bandit4@bandit.labs.overthewire.org -p 2220
_ _ _ _
| |__ __ _ _ __ __| (_) |_
| '_ \\ / _` | '_ \\ / _` | | __|
| |_) | (_| | | | | (_| | | |_
|_.__/ \\__,_|_| |_|\\__,_|_|\\__|
This is an OverTheWire game server.
More information on <http://www.overthewire.org/wargames>
bandit4@bandit.labs.overthewire.org's password:
,----.. ,----, .---.
/ / \\ ,/ .`| /. ./|
/ . : ,` .' : .--'. ' ;
. / ;. \\ ; ; / /__./ \\ : |
. ; / ` ; .'___,/ ,' .--'. ' \\' .
; | ; \\ ; | | : | /___/ \\ | ' '
| : | ; | ' ; |.'; ; ; \\ \\; :
. | ' ' ' : `----' | | \\ ; ` |
' ; \\; / | ' : ; . \\ .\\ ;
\\ \\ ', / | | ' \\ \\ ' \\ |
; : / ' : | : ' |--"
\\ \\ .' ; |.' \\ \\ ;
www. `---` ver '---' he '---" ire.org
Welcome to OverTheWire!
패스워드까지 입력하면 접속 성공
'Bandit' 카테고리의 다른 글
Bandit 워게임으로 리눅스 공부하기 - Bandit Level 5 → Level 6 (0) | 2023.08.24 |
---|---|
Bandit 워게임으로 리눅스 공부하기 - Bandit Level 4 → Level 5 (0) | 2023.08.24 |
Bandit 워게임으로 리눅스 공부하기 - Bandit Level 2 → Level 3 (0) | 2023.08.23 |
Bandit 워게임으로 리눅스 공부하기 - Bandit Level 1 → Level 2 (0) | 2023.08.23 |
Bandit 워게임으로 리눅스 공부하기 - Bandit Level 0 → Level 1 (0) | 2023.08.23 |