编程语言
首页 > 编程语言> > pythonchallenge Level 8

pythonchallenge Level 8

作者:互联网

第8关地址:http://www.pythonchallenge.com/pc/def/integrity.html

提示信息:Where is the missing link?

查看源码:

 发现 http://www.pythonchallenge.com/pc/return/good.html,打开需要账号密码

下方有发现UN和PW,应该是被加密过的账号密码。

un和pw使用bz2解码

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)) # huge
print(bz2.decompress(pw)) # file

获得下一关地址:http://www.pythonchallenge.com/pc/return/good.html 

账号:huge 密码:file

标签:www,http,pythonchallenge,Level,pc,html,x00
来源: https://www.cnblogs.com/nicole-zhang/p/15557486.html