Con-The-Cat ~ Traboda Forensic Challenge Write Up

Srikesh Ravikumar
2 min readJun 20, 2021

Challenge Description : This image seems to big for a normal png! What do you think can be hidden in this?

Challenge Link : https://app.traboda.com/challenge/105

Flag Format : inctfj{…}

Initially we are given this image..

sus.png

While reading the challenge description where it is mentioned that this image is very big for a normal png . Hence it is clear that there are multiple images/data.

To extract all those data from this image will use a tool named binwalk used mainly for searching embedded files and executable code within another data file.

To use this tool , open a terminal and type

binwalk -e sus.png

On executing this command we will be able to see a folder called _sus.png.extracted which consists of all the data extracted from sus.png

On opening this folder we will be able to see an image named image.jpeg which contains the flag for this challenge

image.jpeg

The flag for this challenge is inctfj{y0u_c4nt_s33_m3!!}

Installing Binwalk

sudo apt install binwalk

Intro to Traboda : Traboda is an Cybersecurity Edutech from which provides 200+ challenges from various categories and competitions with difficulty ranging from beginners to experts.

--

--