본문 바로가기
Bandit

[Bandit] Level 10

by st-og 2023. 7. 16.

Level Goal

The password for the next level is stored in the file data.txt, which contains base64 encoded data

 

data.txt 안에 base64로 인코딩된 데이터를 읽기


cat 명령어를 통해 data.txt를 읽어보면 이렇게 

인코딩이 되어 있는 것을 확인할 수 있다.

문제에서 base64로 인코딩 되어있다고 하니 우리는 base64로 디코딩만 하면 되는 것이다.

 

리눅스에서 base64로 디코딩 하는 방법은 base64 명령어에서 --decode 옵션을 사용하면 된다.

base64 --decode data.txt

 

해당 명령어를 입력하면

 

정답을 확인할 수 있다.

 

정답: 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM

'Bandit' 카테고리의 다른 글

[Bandit] Level 12  (0) 2023.07.19
[Bandit] Level 11  (0) 2023.07.17
[Bandit] Level 9  (1) 2023.07.16
[Bandit] Level 8  (0) 2023.07.16
[Bandit] Level 7  (0) 2023.07.14