[Bandit-OverTheWire] Level 7 -> Level 8

두비니

·

2020. 9. 19. 16:17

 

 

 

 

Bandit Level 7 → Level 8

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

 

 

bandit7@bandit:~$ ls
data.txt

 

ㅖ.... 실행시키면 미친 양의 텍스트가 뿜어져 나옵니다.

 

 

millionth라는 단어 옆에 있는 값이 password라고 했으니까, 단어를 기준으로 찾아줄 명령어를 찾아봅시다.

저는 grep이라는 명령어를 사용했습니다.

 

bandit7@bandit:~$ cat data.txt | grep "millionth"
millionth	cvX2JJa4CFALtqS87jk27qwqGhBM9plV

 

grep에 대해서 잘 모른다면 : recipes4dev.tistory.com/157

 

리눅스 grep 명령어 사용법. (Linux grep command) - 리눅스 문자열 검색

1. grep 명령어. grep은 입력으로 전달된 파일의 내용에서 특정 문자열을 찾고자할 때 사용하는 명령어입니다. 리눅스에서 가장 많이 사용되는 명령어 중 하나이죠. 하지만 grep 명령어가 문자열을 �

recipes4dev.tistory.com

 

다음!