메-모해봅시다.

Bandit Level 7 → Level 8 본문

리눅스/Over The Wire

Bandit Level 7 → Level 8

RollingPumpkin 2020. 5. 19. 23:18

Level Goal

The password for the next level is stored in the file data.txt next to the word millionth

Commands you may need to solve this level

grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd


목표

다음 단계로 가는 비밀번호는 data.txt 파일에 millionth라는 단어 뒤에 있습니다.

 

이 단계를 해결할 때 유용한 명령어

grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd



-어떻게 풀까?


우선, 파일을 확인하고 바로 열어보자.

파일을 확인했으니 이제 cat 명령어로 열어보면

한 컷에 담기엔 창이 작아서 그렇지, 이 위로 수십배는 되는 분량의 텍스트입니다...

이런 식으로 어마어마한 문자열들이 나온다.

그냥 메모장이였다면 Ctrl + F 로 쉽게 찾을 테지만 리눅스에선 이 기능을 수행하는 명령어는 따로 있다.

 

바로 위에 있는 이 단계를 해결할 때 유용한 명령어 를 살펴보면 제일 첫번째에 있는 grep 명령어가 그 기능을 수행할 수 있다.

손 쉽게 grep millionth data.txt 라고 입력하면 바로 나온다.

비밀번호가 cvX2JJa4CFALtqS87jk27qwqGhBM9plV 인 것을 알아내었으니 다음 단계로 넘어가자.

ssh bandit8@bandit.labs.overthewire.org -p 2220

 

'리눅스 > Over The Wire' 카테고리의 다른 글

Bandit Level 9 → Level 10  (0) 2020.05.20
Bandit Level 8 → Level 9  (0) 2020.05.20
Bandit Level 6 → Level 7  (0) 2020.05.19
Bandit Level 5 → Level 6  (0) 2020.05.09
Bandit Level 4 → Level 5  (0) 2020.05.08