pythonchallenge Level 8

Posted OTAKU_undefined

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

本文来自博客园,作者:OTAKU_undefined,转载请注明原文链接:https://www.cnblogs.com/nicole-zhang/p/15557486.html

以上是关于pythonchallenge Level 8的主要内容,如果未能解决你的问题,请参考以下文章

pythonchallenge Level 5

pythonchallenge Level 2

pythonchallenge Level 4

pythonchallenge Level 7

pythonchallenge Level 3

pythonchallenge Level 6