pythonchallenge闖關 第8題
阿新 • • 發佈:2017-10-02
需要 com hide span isp 驗證 常用 ood spa
(8)
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 = 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(‘username: ‘ + bz2.decompress(un).decode()) print(‘password: ‘ + bz2.decompress(pw).decode())
username: huge
password: file
輸入完成後頁面自動跳轉到http://www.pythonchallenge.com/pc/return/good.html
之後這個用戶名和密碼經常用,所以可以保存cookie
pythonchallenge闖關 第8題