힌트를 확인해보면 

 

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

data.txt파일 안에 패스워드 정보가 저장이 되어있으나 base 64로 암호화가 되어있다.

그럼 이걸 복호화를 한 다음 실행하면 패스워드를 얻을 수 있을 거 같다. 

 

base 64로 인코딩이 되어있는것을 확인했으니 이걸 복호화를 하면 될거 같다.

base64 --decode data.txt

 

 

아주 쉽게 문제를 풀 수 있었다.

+ Recent posts