아래 쓰여져있는 숫자를 보고 암호를 구하는 문제이다.
숫자는 아스키코드인 것같아 파이썬 코드를 이용해 문자열로 변환하였다.
cipher = [86, 71, 57, 107, 89, 88, 107, 103, 97, 88, 77, 103, 89, 83, 66, 110, 98, 50, 57, 107, 73, 71, 82, 104, 101, 83, 52, 103, 86, 71, 104, 108, 73, 69, 70, 49, 100, 71, 104, 76, 90, 88, 107, 103, 97, 88, 77, 103, 86, 109, 86, 121, 101, 86, 90, 108, 99, 110, 108, 85, 98, 50, 53, 110, 86, 71, 57, 117, 90, 48, 100, 49, 99, 109, 107, 104]
result = ""
for i in cipher :
result += chr(i)
print("Found string : ", result)
코드를 실행하면, result값으로 VG9kYXkgaXMgYSBnb29kIGRheS4gVGhlIEF1dGhLZXkgaXMgVmVyeVZlcnlUb25nVG9uZ0d1cmkh 가 출력된다.
이 문자열을 다시 base64로 디코딩하면,
AuthKey를 볼 수 있따 ~!~!! ٩(ˊᗜˋ*)و
>>참고
base64 디코딩 : https://www.base64decode.org/
Base64 Decode and Encode - Online
Decode from Base64 or Encode to Base64 with advanced formatting options. Enter our site for an easy-to-use online tool.
www.base64decode.org