CTF_Write_UP (91) 썸네일형 리스트형 Overthewire : Bandit Level 9 → Level 10 시작 안녕하세요 :D 이번엔 Level 9 → Level 10를 풀어보도록 하겠습니다! root@goorm:/# ssh bandit9@bandit.labs.overthewire.org -p2220 문제 The password for the next level is stored in the file data.txt in one of the few human-readable strings, beginning with several ‘=’ characters. data.txt 파일 안에 human-readable, 사람이 읽을 수 있는 문자열로 패스워드가 저장되어 있답니다. 몇 개의 = 문자 뒤에 나온다고 하네요. 지금까지 했던 대로 cat 후에 grep 해보겠습니다. bandit9@bandit:~$ cat .. Overthewire : Bandit Level 8 → Level 9 시작 안녕하세요 !! :D 지난번에 이어서 Level 8 → Level 9를 풀어보겠습니다. ssh bandit8@bandit.labs.overthewire.org -p2220 문제 The password for the next level is stored in the file data.txt and is the only line of text that occurs only once 패스워드는 data.txt에 있고, 딱 한 줄만 나타난다고 하네요. data.txt의 중복을 제거하는 작업이 필요할 것 같습니다. 어떤 명령어를 사용하면 파일 내용이 중복 없이 정렬될까요?? uniq [옵션] : 이어진 내용의 중복을 제거합니다. - c : 몇 번 중복되었는지 출력합니다. uniq는 파일 내용이 중복되면 제거.. Overthewire : Bandit Level 7 → Level 8 시작 안녕하세요 ! :D 지난 포스팅에 이어서 Level 7 → Level 8 풀어보도록 하겠습니다. root@goorm:/# ssh bandit7@bandit.labs.overthewire.org -p2220 문제 The password for the next level is stored in the file data.txt next to the word millionth data.txt 파일 속 millionth 란 단어 옆에 있는 것이 패스워드라고 하네요. 우선 cat으로 파일 내용을 한 번 볼까요? bandit7@bandit:~$ cat data.txt | more humiliation's 47r0YuNylaQ3k6HqGF5NsPPiGuolDCjn malarkey's 0huyJeRwvtJaoyRm.. Overthewire : Bandit Level 6 → Level 7 시작 안녕하세요!! :D 이번 시간엔 Level 6 → Level 7 을 풀어보겠습니다. root@goorm:/# ssh bandit6@bandit.labs.overthewire.org -p2220 문제 The password for the next level is stored somewhere on the server and has all of the following properties: owned by user bandit7 owned by group bandit6 33 bytes in size server 어딘가에 패스워드 파일이 존재합니다. 조건은 아래와 같습니다. user == bandit7 group == bandit6 size == 33 bytes find 명령어를 적절하게 사용해서 패스워.. Overthewire : Bandit Level 5 → Level 6 시작 안녕하세요!! :D 이번 시간엔 Level 5 → Level 6를 풀어보겠습니다. root@goorm:/# ssh bandit5@bandit.labs.overthewire.org -p2220 문제 The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties: human-readable 1033 bytes in size not executable inhere 디렉터리 어딘가에 패스워드 파일이 존재한다고 합니다. ..전부 다 뒤져보면 되겠죠? bandit5@bandit:~/inhere$ ls maybehere00 maybehere03 .. Overthewire : Bandit Level 4 → Level 5 시작 안녕하세요! :D 이번에는 Level 4 → Level 5를 풀어볼까요?? root@goorm:/# ssh bandit4@bandit.labs.overthewire.org -p2220 문제 Level Goal The password for the next level is stored in the only human-readable file in the inhere directory. Tip: if your terminal is messed up, try the “reset” command. 패스워드는 inhere 디렉터리에 human-readable, 사람이 읽을 수 있는 파일로 저장되어 있답니다. 일단 inhere 디렉터리로 들어가볼까요? bandit4@bandit:~$ cd inhere/ ban.. Overthewire : Bandit Level 3 → Level 4 시작 안녕하세요!! :D 이번엔 Level 3 → Level 4를 풀어보도록 하겠습니다. root@goorm:/# ssh bandit3@bandit.labs.overthewire.org -p2220 문제 Level Goal The password for the next level is stored in a hidden file in the inhere directory. inhere 디렉터리에 숨김 파일로 패스워드가 들어가 있답니다. 바로 들어가보죠! bandit3@bandit:~$ ls -l total 4 drwxr-xr-x 2 root root 4096 Oct 16 14:00 inhere inhere 디렉터리가 보입니다. `cd 명령어를 통해 진입해 봅시다. bandit3@bandit:~$ cd in.. Overthewire : Bandit Level 2 → Level 3 시작 안녕하세요 :D 지난 시간에 이어서 Level 2 → Level 3 를 풀어보도록 하겠습니다 ! root@goorm:/# ssh bandit2@bandit.labs.overthewire.org -p2220 문제 Level Goal The password for the next level is stored in a file called spaces in this filename located in the home directory home 디렉터리 속 spaces in this filename 라는 파일에 패스워드가 있답니다. 3연속으로 cat을 사용하는 문제네요. ls로 확인해봅시다! bandit2@bandit:~$ ls -l total 4 -rw-r----- 1 bandit3 bandit2 33 .. 이전 1 ··· 8 9 10 11 12 다음