Home >

Huntress CTF > Easy Challenges

Back <> Next

Oh, a cheese stick! This was my favorite snack as a kid. My mom always called it by a different name though…

This one is also pretty straightforward. We are given an image file ‘cheese.jpg’ to download to begin this challenge.

We can view the file and confirm that it is, indeed, a picture of string cheese.

However, We can also run the ‘strings’ command on the file and extract the text to look for anything interesting. To save time we can filter the result by using grep to look for ‘flag’!

strings cheese.jpg | grep flag

string cheese

Back <> Next