Write-up
[Python Challenge] level 8
ch4rli3kop
2019. 4. 13. 22:04
반응형
#!/usr/bin/python3
import bz2
un = b'BZh91AY&SYA\xaf\x82\r\x00\x00\x01\x01\x80\x02\xc0\x02\x00 \x00!\x9ah3M\x07<]\xc9\x14\xe1BA\x06\xbe\x084'
pw = b'BZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03$ \x00!\x9ah3M\x13<]\xc9\x14\xe1BBP\x91\xf08'
print('un : %s'%bz2.decompress(un).decode('utf-8'))
print('pw : %s'%bz2.decompress(pw).decode('utf-8'))
을 실행하면 다음과 같은 결과를 얻을 수 있다.
un : huge
pw : file
해당 입력 값을 갖고 http://www.pythonchallenge.com/pc/return/good.html 에 입력하면 된다.
next : http://www.pythonchallenge.com/pc/return/good.html solution : http://www.pythonchallenge.com/pcc/return/good.html:huge:file
반응형