pythonchallenge-8地址 : http://www.pythonchallenge.com/pc/def/integrity.html
题目解析:点击图片,弹出一个连接,需要输入账号密码。
查看页面源代码,有以下字段
<!-- un: 'BZh91AY&SYAxafx82 x00x00x01x01x80x02xc0x02x00 x00!x9ah3Mx07<]xc9x14xe1BAx06xbex084' pw: 'BZh91AY&SYx94$|x0ex00x00x00x81x00x03$ x00!x9ah3Mx13<]xc9x14xe1BBPx91xf08' -->
题目意思就是,解析账号密码
解题过程:
import bz2 un = b'BZh91AY&SYAxafx82 x00x00x01x01x80x02xc0x02x00 x00!x9ah3Mx07<]xc9x14xe1BAx06xbex084' pw = b'BZh91AY&SYx94$|x0ex00x00x00x81x00x03$ x00!x9ah3Mx13<]xc9x14xe1BBPx91xf08' print("username : " + bz2.decompress(un).decode()) print("password : " + bz2.decompress(pw).decode())
答案:
username : huge password : file
心得:这个账号密码在后期也是需要用到的