-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_18.py
63 lines (52 loc) · 1.92 KB
/
level_18.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
61
62
63
#!/bin/env python
# coding=utf-8
# http://huge:[email protected]/pc/return/balloons.html
# Images in difflib.
import difflib
import gzip
from io import BytesIO
import requests
from PIL import Image
PREFIX = "http://huge:[email protected]/pc/return/"
url = PREFIX + 'deltas.gz'
def solve(something):
with gzip.GzipFile(fileobj=BytesIO(something)) as file:
data1 = []
data2 = []
for line in file.read().splitlines():
if line[:54].strip():
data1.append(bytes.fromhex(line[:54].decode()))
if line[55:].strip():
data2.append(bytes.fromhex(line[55:].decode()))
s = difflib.SequenceMatcher(None, data1, data2)
# Time consuming: ndiff() > SequenceMatcher.get_opcodes()
common = delta1 = delta2 = b''
for tag, i1, i2, j1, j2 in s.get_opcodes():
if tag == 'equal':
common += b''.join(data1[i1:i2])
elif tag == 'insert':
delta1 += b''.join(data2[j1:j2])
elif tag == 'delete':
delta2 += b''.join(data1[i1:i2])
elif tag == 'replace':
delta1 += b''.join(data2[j1:j2])
delta2 += b''.join(data1[i1:i2])
im1 = Image.open(BytesIO(common))
im2 = Image.open(BytesIO(delta1))
im3 = Image.open(BytesIO(delta2))
width = max(im1.size[0], im2.size[0], im3.size[0])
height = im1.size[1] + im2.size[1] + im3.size[1]
background = Image.new(im1.mode, (width, height))
background.paste(im1, (0, 0))
background.paste(im2, (0, im1.size[1]))
background.paste(im3, (0, im1.size[1] + im2.size[1]))
return background
def plot(im):
im.show()
if __name__ == "__main__":
r = requests.get(url)
something = r.content
answer = solve(something)
plot(answer)
# ../hex/bin.html, butter, fly
# http://butter:[email protected]/pc/hex/bin.html