[OverTheWire:Bandit] Level 2 ~ Level 3

2023. 7. 7. 17:11War Game/OverTheWire

문제

 

 

다음 단계로 넘어가는 암호는 홈 디렉토리에 있는 'spaces in this filename' 이라는 파일에 저장되어있다고 한다. 

 

Keyword

 

home directory, cat, cd, ls

 

풀이

 

cd ~
ls
cat spaces in this filename

 

홈 디렉토리로 이동해서 파일 리스트에서  'spaces in this filename' 파일이 있는 걸 확인한다. 그리고 cat 명령어를 사용해서 'spaces in this filename' 파일의 내용을 출력하여 비밀번호를 확인한다.

 

그러나 막상 cat 명령어를 사용하게 면 각 문자열을 파일로 인식해서  'spaces in this filename'라는 파일의 내용을 출력할 수 없다. 

 

 

이를 해결하기 위해 'spaces in this filename'를 " " 또는 ' '으로 묶어 하나의 파일이라는 것을 알려 cat 명령어를 실행시킬 수 있다.