FinalCorruptZip
Description
BGR
Solution
Oddly enough 7z is not able to open the above zip, but windows archive was able to?... NANIII
Anyway, the zip files always start with PK so header is corrupted.

Lookup Magic Bytes or List of file signatures
If you're using latest version of Hex Editor -> Select 41 (first byte) -> press Insert -> type 50 -> Save -> Unzip

└─$ unzip FinalCorruptZip.zip
└─$ file CorruptPNG.png
CorruptPNG.png: data

Edit first bytes as Signature indicates


To make life easier use OCR:
└─$ sudo apt install tesseract-ocr -y
└─$ tesseract CorruptPNG.png out
└─$ cat out.txt
SVBGR{m4g1C_B1t3s_yUmmmmm}
Flag:
SVBGR{m4g1C_B1t3s_yUmmmmm}
Last updated