이미지를 열면 굉장히 조그만 빨/검 조합을 볼 수 있다.
온라인 스테가노그래피 툴로 분석해도 나오는게 없다.
pip install image
from PIL import Image
pic = Image.open("./color.png")
data = pic.load()
red = (255, 0, 0)
width, height = pic.size
for y in range(height):
binary_line = []
for x in range(width):
pixel = data[x, y]
if pixel == red:
binary_line.append('1')
else:
binary_line.append('0')
print(chr(int(''.join(binary_line),2)), end='')
'워게임 > CTF-D' 카테고리의 다른 글
[multimedia] splitted (0) | 2022.03.07 |
---|---|
[multimedia] 이 파일에서 플래그를 찾아라! (0) | 2022.03.07 |
[Memory] GrrCON 2015 #25 (0) | 2021.12.14 |
[Memory] GrrCON 2015 #24 (0) | 2021.12.14 |
[Memory] GrrCON 2015 #23 (0) | 2021.12.14 |
댓글