본문 바로가기

wargame/bandit

Level 2 → Level 3

Level Goal

The password for the next level is stored in a file called spaces in this filename located in the home directory
비밀번호는 홈 디렉토리의 spaces in this filename 파일에 저장되어 있다

Code

bandit2@bandit:~$ ls
spaces in this filename
bandit2@bandit:~$ cat spaces\ in\ this\ filename 
#비밀번호
bandit2@bandit:~$ cat "spaces in this filename"
#비밀번호

파일 이름에 공백이 포함되어 있는 경우, 첫 단어를 입력한 후 tab를 누르면 파일의 나머지 부분을 자동으로 입력할 수 있다. 아니면 공백을 입력하기 전에 \(backslash)을 입력하면 공백으로 받아들인다
+)추가 19.02.20
큰 따옴표를 쓰면 하나의 파일이름으로 인식한다

'wargame > bandit' 카테고리의 다른 글

Level 5 → Level 6  (0) 2019.02.14
Level 4 → Level 5  (0) 2019.02.14
Level 3 → Level 4  (0) 2019.02.14
Level 1 → Level 2  (0) 2019.02.14
Level 0 → Level 1  (0) 2019.02.14