파일 생성 및 복사touch touch는 파일의 날짜시간정보를 변경하는 명령어이다. 즉, 아무런 옵션 없이 사용되면 서버의 현재시간으로 파일의 최근에 사용한 시간과 최근에 변경된 시간을 변경한다. 만약 지정된 명령어가 존재하지 않는다면 파일의 크기가 0인 파일을 생성한다. -t 옵션을 사용하면 서버의 현재시간이 아닌 지정된 파일의 날짜시간정보를 변경한다. -t 옵션을 사용하면 특정 파일의 날짜시간정보를 지정한 것으로 변경한다.mkdir mkdir은 "MaKe DIRectory"의 약어로서 새로운 디렉토리를 만들 때 사용되는 명령어이다. 간단히 "mkdir 디렉토리명"으로 간단하게 필요한 새로운 디렉토리를 생성할 수 있다. 만약 상위 디렉토리 경로를 포함하는 디렉토리를 생성할 때에는 -p 옵션을 사용한다...
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/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에 접속한다. 파일..