After all this git stuff its time for another escape. Good luck!
Commands you may need to solve this level
sh, man
1. bandit32 비밀번호
56a9bf19c63d650ce78e6ec0354ee45e
2. 문제 확인
WELCOME TO THE UPPERCASE SHELL
>> ?
sh: 1: ?: not found
>> help
sh: 1: HELP: not found
>> man
sh: 1: MAN: not found
>> man upperscase dhell
sh: 1: MAN: not found
>> -h
UPPERCASE SHELL 이란 이름에도 알수있듯이 쉘이 인식할때 대문자로 인식하여 명령어 동작이 제대로 안된다.
3. 쉘 특징 확인
>> $0
$ ls
uppershell
http://heirloom.sourceforge.net/sh/sh.1.htm사이트에서 sh 쉘에대한 정보를 얻을수있으며 $0을 입력하면 bash 쉘로 전환할수 있다. 명령어가 정상적으로 동작한다.
4. 암호 확인
$ cat /etc/bandit_pass/bandit33
c9c3199ddf4121b10cf581a98d51caee
5. bandit33 암호
c9c3199ddf4121b10cf581a98d51caee
6. 얻은 지식
sh 쉘의 경우 $0 을 입력하면 bash 쉘로 전환할수 있다.