Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

dohki

Internetwache CTF 2016: Misc 50 - The hidden message 본문

Hacking/CTF write up

Internetwache CTF 2016: Misc 50 - The hidden message

dohki 2016. 2. 25. 18:35

Description


My friend really can't remember passwords. So he uses some kind of obfuscation. Can you restore the plaintext?







Write-up



8진수 인 것 같아서 다음과 같은 code를 작성하고 실행했다.


s = ''

for i in range(4):
  dat = raw_input()
  dat = dat.split()

  for ch in dat:
    s += chr(int('0' + ch, 8)) 

print s







Flag


IW{N0_0ne_can_st0p_y0u}

Comments