-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_26.py
60 lines (49 loc) · 1.68 KB
/
level_26.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/env python
# coding=utf-8
# http://butter:[email protected]/pc/hex/decent.html
# Email leopold and fix the broken zip.
import hashlib
import zipfile
from io import BytesIO
from PIL import Image
PREFIX = "http://butter:[email protected]/pc/hex/"
url = PREFIX + 'decent.html'
def prepare():
# Apologize for reading Leopold's email in level 19
# Send a 'sorry' email to <[email protected]>
# And then get a response like this:
# Never mind that.
# Have you found my broken zip?
# md5: bbb8b499a0eef99b52c7f13f4e78c24b
# Can you believe what one mistake can lead to?
broken = bytearray(open('mybroken.zip', "rb").read())
MD5 = 'bbb8b499a0eef99b52c7f13f4e78c24b'
return broken, MD5
def repair(broken, MD5):
all_chars = list(range(256))
for i, bak in enumerate(broken):
for ch in all_chars:
broken[i] = ch
if hashlib.md5(broken).hexdigest() == MD5:
print('Find it:{}-{}'.format(i, ch))
return broken
broken[i] = bak
return
def solve(data):
result = None
with zipfile.ZipFile(BytesIO(data), 'r') as zip:
for name in zip.namelist():
if name.endswith('.gif'):
zip.extract(name)
result = BytesIO(zip.read(name))
return result
def plot(byte_io):
Image.open(byte_io).show()
if __name__ == "__main__":
broken, MD5 = prepare()
data = repair(broken, MD5)
answer = solve(data)
plot(answer)
# speed
# Hurry up, I'm missing the boat
# http://butter:[email protected]/pc/hex/speedboat.html