码迷,mamicode.com
首页 > 编程语言 > 详细

pythonchallenge闯关 第8题

时间:2017-10-02 00:24:20      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:解压缩   span   compress   div   col   one   pre   logs   res   

8、Hint:(1)蜜蜂画了映射,可点击,弹出需要进行身份验证,需要用户名和密码

     (2)un: ‘BZh91AY&SYA\xaf\x82\r\x00\x00\x01\x01\x80\x02\xc0\x02\x00 \x00!\x9ah3M\x07<]\xc9\x14\xe1BA\x06\xbe\x084‘

      pw: ‘BZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03$ \x00!\x9ah3M\x13<]\xc9\x14\xe1BBP\x91\xf08‘

BZh91AY&SYA 代表 bz2压缩

所以就要解压缩

技术分享
# -*- coding:UTF-8 -*-
import bz2
un = bBZh91AY&SYA\xaf\x82\r\x00\x00\x01\x01\x80\x02\xc0\x02\x00 \x00!\x9ah3M\x07<]\xc9\x14\xe1BA\x06\xbe\x084
pw = bBZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03$ \x00!\x9ah3M\x13<]\xc9\x14\xe1BBP\x91\xf08
print(username:  + bz2.decompress(un).decode())
print(password:  + bz2.decompress(pw).decode())
(8)

username: huge

password: file

输入完成后页面自动跳转到http://www.pythonchallenge.com/pc/return/good.html

之后这个用户名和密码经常用,所以可以保存cookie

pythonchallenge闯关 第8题

标签:解压缩   span   compress   div   col   one   pre   logs   res   

原文地址:http://www.cnblogs.com/Zzzml/p/7618288.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!