247CTF - Hidden Painting
A hidden painting is encoded as coordinates. Connect the dots to reveal the flag.
Vulnerability
Steganography through coordinate encoding. Data is hidden in plain sight as hex coordinates.
Solution
The challenge provides a file with hex-encoded coordinates:
1 | 0x4b 0x9d0 |
Each line contains X and Y coordinates in hexadecimal format. Use Python to plot them:
1 | import matplotlib.pyplot as plt |
When plotted, the image containing the flag.
Key Insight
Encoding data as coordinates is a simple steganographic technique. Visualizing data reveals hidden patterns that text alone cannot convey.
247CTF{0c895fb57954df7f83756e1f7718e661}