소스보기에 나오는 이상한 값들에 대해 구글링 해보니 Bz compress다. decompress해보자
import bz2

un = "BZh91AY&SYA\xaf\x82\r\x00\x00\x01\x01\x80\x02\xc0\x02\x00 \x00!\x9ah3M\x07<]\xc9\x14\xe1BA\x06\xbe\x084"
pw = "BZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03$ \x00!\x9ah3M\x13<]\xc9\x14\xe1BBP\x91\xf08"

un = bz2.decompress(un)
pw = bz2.decompress(pw)
print un
print pw

'Wargame > pythonchallenge' 카테고리의 다른 글

pythonchallenge LEVEL 6  (0) 2017.04.14
pythonchallenge LEVEL 5  (0) 2017.04.12
pythonchallenge LEVEL 4  (0) 2017.04.12
pythonchallenge LEVEL 3  (0) 2017.04.12
pythonchallenge LEVEL 2  (0) 2017.04.12

+ Recent posts