Python教程

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

这篇关于pythonchallenge Level 8的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!