您的位置:首页 > 编程语言 > Python开发

pythonchallenge 解谜 Level 8

2016-06-12 15:25 381 查看
#-*- coding:utf-8 -*-
#代码版本均为python 3.5.1
#Level 7

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(bz2.decompress(un))
print(bz2.decompress(pw))


源码如上,得到用户名和密码。

username :huge

password :file

下一关地址

http://www.pythonchallenge.com/pc/return/good.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: