Skip to content

Commit 01bbe00

Browse files
8
1 parent fecefc3 commit 01bbe00

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

8.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import bz2
2+
3+
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'
4+
pw = b'BZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03$ \x00!\x9ah3M\x13<]\xc9\x14\xe1BBP\x91\xf08'
5+
6+
username = bz2.decompress(un)
7+
password = bz2.decompress(pw)
8+
9+
print(username)
10+
print(password)
11+
12+
13+

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
Solve Problems in http://www.pythonchallenge.com
33

44
#### 8
5-
result:
5+
result: http://www.pythonchallenge.com/pc/return/good.html
6+
7+
un:huge pw:file
8+
9+
html knowledge: img-usemap="#--", area, sharp, poly, coords.
10+
```
11+
import bz2
12+
```
613

714
#### 7
815
result: http://www.pythonchallenge.com/pc/def/integrity.html

0 commit comments

Comments
 (0)