디렉토리 및 파일위치 확인 명령어현재 작업 디렉토리 위치 확인 : pwd pwd는 "Print Working Directory"의 약어로서 현재 작업 디렉토리의 위치를 확인하는 명령어이다.작업 디렉토리의 이동 : cd cd는 "Change Directory"의 약어로서 작업 디렉토리의 위치를 변경하는 쉘 내부 명령어이다. 즉, 현재 위치한 디렉토리에서 지정된 디렉토리로 이동할 때 사용하는 명령어이다. 그냥 "cd"라고만 하면 서버 로그인 시에 처음 위치했던 자신의 홈디렉토리로 이동한다. "cd ~"라고 명령을 내려도 홈디렉토리로 이동하는데, "~" 표시는 홈디렉토리를 의미하여 "~/bin"과 같이 뒤에 하위 디렉토리를 입력해도 된다.cd / : 루트 디렉토리(/)로 이동cd . : 현재 디렉토리(현위치)..
http://overthewire.org/wargames/bandit/bandit12.htmlBandit Level 11 → Level 12Level GoalThe password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positionsCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdHelpful Reading MaterialRot13 on WikipediaLevel 11에서 Level..
http://overthewire.org/wargames/bandit/bandit11.htmlBandit Level 10 → Level 11Level GoalThe password for the next level is stored in the file data.txt, which contains base64 encoded dataCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdHelpful Reading MaterialBase64 on WikipediaLevel 10에서 Level 11로 가려면 data.txt에 있는 비밀번호를 봐야한다. 그런데 base64로 인코드된 데..
http://overthewire.org/wargames/bandit/bandit8.html Bandit Level 7 → Level 8Level GoalThe password for the next level is stored in the file data.txt next to the word millionthCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd Level 7에서 Level 8로 가기 위해서는 data.txt 파일안에 있는 비밀번호를 읽어야한다. data.txt 안에 비밀번호는 'millionth' 단어 옆에 위치해 있다고 한다. 먼저 ssh에 접속한다. 파일..
http://overthewire.org/wargames/bandit/bandit6.htmlBandit Level 5 → Level 6Level GoalThe password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties:human-readable1033 bytes in sizenot executableCommands you may need to solve this levells, cd, cat, file, du, find Level 5에서 Level 6으로 가기위해서 'inhere' 디렉토리 안에 있는 어떤 파일을 열어야 한다고 한다. 이 파일..