Level Goal
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
해당 조건을 만족하는 파일을 찾는 것이 이 문제의 목적이다.
1번 조건을 가지고 level 4때 처럼 file 명령어를 사용해 ascii를 찾아보려 했으나 디렉토리와 파일의 갯수가 너무 많아
방법을 모르겠다.
그래서 2번 조건을 가지고 find 명령어를 사용해 봤다.
더보기
find : find 명령어를 사용할때 시작 문법
. : 현재 위치에서 부터 아래 디렉토리 전부를 뜻함
-size : size를 조건으로 찾기 위함
1033c : 1033바이트를 뜻함 (기본은 block, c가 붙으면 바이트 등...)
size가 1033바이트 인 파일은 /maybehere07/.file2 밖에 없으므로 cat 명령어를 통해 확인 해 준다면 정답을 확인할 수 있다
정답:P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU
'Bandit' 카테고리의 다른 글
[Bandit] Level 7 (0) | 2023.07.14 |
---|---|
[Bandit] Level 6 (0) | 2023.07.13 |
[Bandit] Level 4 (0) | 2023.07.13 |
[Bandit] Level 3 (0) | 2023.07.13 |
[Bandit] Level 2 (0) | 2023.07.13 |