lv91 [Bandit] Level 9 Level Goal The password for the next level is stored in the file data.txt in one of the few human-readable strings, preceded by several ‘=’ characters. data.txt안에 있는 알아 볼수 있는 문자열 중 여러개의 "="가 있는 문자열 찾기 data.txt를 cat 명령어로 확인 해보면 알아 볼 수 없는 문자들이 저장되어 있다. 사람이 읽을 수 있는 문자열을 추출할때 쓰는 명령어로는 strings 명령어가 있다 우리는 그 중에서 "="가 여러개 들어 있는 문자열을 찾아야 하므로 | grep == 을 추가해주면 된다. strings data.txt | grep == 더보기 strings [.. 2023. 7. 16. 이전 1 다음