Rating:

正在觀察網頁並開啟DevTools,你會發現 movie.gif正在快速的閃爍,並且間隔之間的黑白有些微的偏差,所以我們試著轉換成0和1

```
from PIL import Image
 im = Image.open(`'`movie.gif')
w, h = im.size
res = ' '
try: while True:
i = im.convert('RGB')
 res += '0' if i.getpixel((0, 0)) == (0, 0, 0) else '1' im.seek(im.tell() + 1)
except:
 print(res)
```


得到結果 result.txt並run以下腳本

```
s = open('result.txt').read().strip()
s =`` s.replace('00000', ' ')
s = s.replace('0000', '-')
s = s.replace('000', '.')
s = s.replace('1', '')
print(s)
```


得到摩斯密碼並解密:
HACKCONMORSEFLAG