-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_07.py
50 lines (42 loc) · 1.42 KB
/
level_07.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
#!/bin/env python
# coding=utf-8
# http://www.pythonchallenge.com/pc/def/oxygen.html
# ASCII inside an image.
import re
from io import BytesIO
import requests
from PIL import Image
PREFIX = "http://www.pythonchallenge.com/pc/def/"
url = PREFIX + 'oxygen.png'
def solve(something):
im = Image.open(BytesIO(something))
width, height = im.size
upper = -1
for j in range(height):
for i in range(0, width, 7):
px = im.getpixel((i, j))
if px[0] == px[1] == px[2]:
continue
elif i > 0:
if upper == -1:
upper = j
left = 0
lower = j + 1
right = i
break
box = (left, upper, right, lower)
print("Selecting the message area: " + str(box))
gray_im = im.crop(box).convert('L')
text = ''.join(chr(gray_im.getpixel((x, 0))) for x in range(left, right, 7))
print("The hidden message is: {}".format(text))
# smart guy, you made it. the next level is [105, 110, 116, 101, 103, 114, 105, 116, 121]
result = "".join([chr(int(x)) for x in re.findall(r'\d+', text)])
print("The result message is: {}\n".format(result))
return result
if __name__ == "__main__":
r = requests.get(url)
something = r.content
answer = solve(something)
# integrity
print(PREFIX + answer + '.html')
# http://www.pythonchallenge.com/pc/def/integrity.html