http://overthewire.org/wargames/bandit/bandit13.htmlBandit Level 12 → Level 13Level GoalThe password for the next level is stored in the file data.txt, which is a hexdump of a file that has been repeatedly compressed. For this level it may be useful to create a directory under /tmp in which you can work using mkdir. For example: mkdir /tmp/myname123. Then copy the datafile using cp, and rename i..
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/bandit10.html Bandit Level 9 → Level 10Level GoalThe password for the next level is stored in the file data.txt in one of the few human-readable strings, beginning with several ‘=’ characters.Commands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd Level 9에서 Level 10으로 가려면 data.txt 파일을 열어 비밀번호를 확인해야한다.여러개의 '=' 문자..
http://overthewire.org/wargames/bandit/bandit9.html Bandit Level 8 → Level 9Level GoalThe password for the next level is stored in the file data.txt and is the only line of text that occurs only onceCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdHelpful Reading MaterialThe unix commandline: pipes and redirectsLevel 8에서 Level 9로 가기 위해서 data.tx..