134 words
1 minute
SCSC2026 Quals - Meta - Forensics Writeup
Category: Forensics
File: meta_logo.png
Flag: scsc26{m3t4_d4t4_d1_im4gE}
Challenge Description
A PNG image file that contains hidden information.
Analysis
The challenge name “Meta” hints at metadata. Image files often contain EXIF metadata that can store various information including hidden data.
Solution
Simply use exiftool to examine the image metadata:
$ exiftool meta_logo.pngExifTool Version Number : 13.10File Name : meta_logo.pngDirectory : .File Size : 4.3 kBFile Type : PNGFile Type Extension : pngMIME Type : image/pngImage Width : 300Image Height : 168Bit Depth : 8Color Type : PaletteCompression : Deflate/InflateFilter : AdaptiveInterlace : NoninterlacedArtist : scsc26{m3t4_d4t4_d1_im4gE}Image Size : 300x168Megapixels : 0.050The flag is hidden in the Artist EXIF field.
Alternative Methods
# Using strings$ strings meta_logo.png | grep scsc
# Using grep directly on binary$ grep -a "scsc" meta_logo.png SCSC2026 Quals - Meta - Forensics Writeup
https://fuwari.vercel.app/posts/27/scsc2026-quals-meta-forensics-writeup/