1. 程式人生 > >pythonchallenge闖關 第8題

pythonchallenge闖關 第8題

需要 com hide span isp 驗證 常用 ood spa

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題