[Bandit-OverTheWire] Level 3 -> Level 4

두비니

·

2020. 9. 17. 22:36

 

Bandit Level 3 → Level 4

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

 

 

bandit3@bandit:~$ ls
inhere

 

디렉토리를 확인해보면 inhere라는 또다른 디렉토리가 있는걸 확인할 수 있습니다.

 

bandit3@bandit:~/inhere$ ls

 

막상 ls로 디렉토리를 확인해보면 아무것도 없는 것을 확인할 수 있습니다.

이거는 ls의 옵션에 대해서 물어보는 문제인데, 모르는 사람은 글 읽고 옵시다.

withcoding.com/89

 

리눅스 ls 명령어 사용법, 옵션 정리 (디렉토리 내용 출력 명령어)

리눅스 ls 명령어 (list) 리눅스(Linux)에서는 ls 명령어를 사용하여 디렉토리(directory)에 있는 내용(디렉토리, 파일 등)을 확인한다. 윈도우(또는 도스)의 dir 명령과 비슷하다. (리눅스에도 dir 명령이

withcoding.com

 

그럼 ls -a ls -al쓰면 되겠죠? 실제로 리눅스 쓰면 ls -al을 제일 많이 써서 ls -al을 쓰도록 하겠습니다.

bandit3@bandit:~$ cd inhere
bandit3@bandit:~/inhere$ ls -al
total 12
drwxr-xr-x 2 root    root    4096 May  7 20:14 .
drwxr-xr-x 3 root    root    4096 May  7 20:14 ..
-rw-r----- 1 bandit4 bandit3   33 May  7 20:14 .hidden
bandit3@bandit:~/inhere$ cat .hidden
pIwrPrtPN36QITSp3EQaw936yaFoFgAB

 

 

넘모 쉽죠?

 

password : pIwrPrtPN36QITSp3EQaw936yaFoFgAB