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 80 - 404 Flag not found 본문

Hacking/CTF write up

Internetwache CTF 2016: Misc 80 - 404 Flag not found

dohki 2016. 2. 25. 19:08

Description


I tried to download the flag, but somehow received only 404 errors :(








Write-up



이상한 url로 접속하는 게 11번 있는데 그냥 url을 보다가 '.ctf.internetwache.org' 앞의 값이 hex 값인 것 같아서 다음 code를 짜고 실행했다.


s = ''

for i in range(11):
  dat = raw_input().split('.')[0]
  s += dat.decode('hex')

print s



첫 글자만 읽으면 flag이다.


Flag


IW{DNS_HACKS}

Comments