Category: Forensics
Points: 100
Author: Prince Niyonshuti N.
The SOC team discovered a suspiciously large log file after a recent breach. When they opened it, they found an enormous block of encoded text instead of typical logs. Could there be something hidden within? Your mission is to inspect the resulting file and reveal the real purpose of it. The team is relying on your skills to uncover any concealed information within this unusual log. Download the encoded data here: Logs Data. Be prepared—the file is large, and examining it thoroughly is crucial .
Use base64 to decode the data and generate the image file.
The clue solves the challenge by itself lol. Let's use base64 to decode the image.
We obtain an image on which there is an ASCII string.
By using Image to text, we can extract the text quite easily from the image.
7069636F4354467B666F72656E736963735F616E616C797369735F69735F616D617A696E675F35646161346132667D
The last step is decoding. We will use dcode. After analysis, we see that this string is ASCII.
Let's decode the string to obtain the flag:
GG!



