0x7F(127) 이하의 16진수가 나열되어 있다.
모두 ASCII 코드로, 문자로의 변환이 가능해보인다.
간단하게 코딩한 후
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import os def main(): hex_str = "54 68 65 20 70 61 73 73 77 6f 72 64 20 69 73 20 3a 20 6b 69 6a 75 79 68" result = "" os.system("cls") for c in hex_str.split(" "): result += chr(int(c, 16)) print "\n" + result if __name__ == '__main__': main() | cs |
결과를 보고
입력하면
끝
'[Wargame Write-up] > W3Challs' 카테고리의 다른 글
[W3Challs] [/dev/null] -- --- .-. ... . .-.-.- .-.-.- .-.-.- (0) | 2017.02.04 |
---|---|
[W3Challs] [/dev/null] Security + Javascript ≠ 2 (0) | 2017.02.03 |
[W3Challs] [Cracking] ProtectionSystem I (0) | 2017.01.29 |
[W3Challs] [Cracking] My Little Pony CEH (0) | 2017.01.29 |
[W3Challs] [Cracking] Le père Noël est une ordure (0) | 2016.09.28 |