Level Goal
The password for the next level is stored somewhere on the server and has all of the following properties:
- owned by user bandit7
- owned by group bandit6
- 33 bytes in size
다음 단계의 암호는 서버의 어딘가에 저장되며 다음 속성을 모두 가집니다.
- 파일 소유자 : bandit7
- 그룹 소유자 : bandit6
- 파일 크기 : 33 bytes
Hint
1. find 명령어
2. find 명령어의 size, user, group 옵션
Write Up
더보기
이번엔 홈 디렉토리가 깨끗했다.
저번 문제처럼 find 명령어를 사용하여 문제 설명에서 나온 정보와 일치하는 파일을 찾아야하는 것으로 보인다.
나는 find 명령어의 size, user, group 옵션을 이용하여 해당 파일을 찾을 수 있었다.
파일을 읽어보니, bandit7의 pw가 맞는 것 같았다.
bandit7 :: HKBPTKQnIay4Fw76bEy8PVxKEDQRKTzs
'Wargame > OverTheWire' 카테고리의 다른 글
[OverTheWire System - Bandit] Level 8 >> Level 9 (0) | 2021.10.27 |
---|---|
[OverTheWire System - Bandit] Level 7 >> Level 8 (0) | 2021.10.27 |
[OverTheWire System - Bandit] Level 5 >> Level 6 (0) | 2021.10.26 |
[OverTheWire System - Bandit] Level 4 >> Level 5 (0) | 2021.10.26 |
[OverTheWire System - Bandit] Level 1 >> Level 2 (0) | 2021.10.26 |
Comment