wargame/bandit
Level 2 → Level 3
dndkdkdk
2019. 2. 14. 17:05
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
큰 따옴표를 쓰면 하나의 파일이름으로 인식한다