Level Goal
The password for the next level is stored in the file data.txt next to the word millionth
data.txt를 cat으로 확인하면 많은 데이터를 볼 수 있다.
우리의 목표는 그 많은 데이터 중 millionth라는 단어를 찾아야 하는 것이다.
많은 데이터 사이에 원하는 값을 찾는 명령어로는 find와 grep을 사용할 수 있다.
나는 grep을 사용해 값을 찾아보았다.
grep millionth data.txt
더보기
grep [찾고자 하는 텍스트] [경로]
millionth라는 단어를 성공적으로 찾을 수 있었고 문제 해결을 완료했다.
정답:TESKZC0XvTetK0S9xNwm25STk5iWrBvP
'Bandit' 카테고리의 다른 글
[Bandit] Level 9 (1) | 2023.07.16 |
---|---|
[Bandit] Level 8 (0) | 2023.07.16 |
[Bandit] Level 6 (0) | 2023.07.13 |
[Bandit] Level 5 (0) | 2023.07.13 |
[Bandit] Level 4 (0) | 2023.07.13 |