보안을 그리다, 훈이

[Cryptography] HackCTF Great Binary(50p) Write Up 본문

Security/Wargame

[Cryptography] HackCTF Great Binary(50p) Write Up

HooNeee 2021. 12. 15. 19:37

 

HackCTF Cryptography 분야 Great Binary(50p) 문제 풀이입니다.

 

[HackCTF] Challenge Great Binary

 

'hoooo.zip' 파일 압축을 풀어보면 'hoooo.txt'이 나옵니다.

 

hoooo.txt

 

문제 이름에서 알 수 있듯이, 파일을 열어보자마자 Binary 값인 것을 알 수 있습니다.

 

Binary -> Decimal -> ASCII 순서로 변환해주는 코드를 Python으로 구현하였습니다.

 

b = input().split()
for i in b:
    print(chr(int(i, 2)), end='')

 

Binary 값을 넣고 돌려보면 바로 Flag가 출력됩니다.

 

Get the Flag!

 

Solve!

 

Comments