avatar
Cyscom
Cybersecurity Student Community of VIT Chennai
  • CTF EVENTS
  • CATEGORIES
  • TAGS
  • ARCHIVES
  • POSTS
  • ABOUT
Home Zypher 2023 Level 4 - Leo's Sinister Bellow
Writeup
Cancel

Level 4 - Leo's Sinister Bellow

Challenge

This is a basic forensics challenge. You are given an image file Leo’s Sinister Bellow

Solution

First thing to do in any steganography challenge is an exiftool check. This will tell you if there is anything hidden in the metadata of the image

1
$ exiftool 1.png

exiftool

Unfortunately, there is nothing in the metadata. Next, we can use binwalk to check for any hidden files in the image.

1
$ binwalk 1.png

binwalk

We can see that there are no files hidden in the image. This means that some other encoding technology has been used.

The description asks us the examine the image closely.

With this information we can suspect that the method used for hiding the flag is LSB encoding.

In order to perform LSB extraction, we will need some tools.

The tool I will be using is stegolsb

https://pypi.org/project/stego-lsb/

Running the stego-lsb tool on the image gives us the flag.

1
$ stegolsb steglsb -r -i Chall.png -o out.txt -n 1
1
$ cat out.txt | grep zyp

Flag

zyp{P@y_@t73nt!0n_7o_L30}
Edit on GitHub

© 2023 Cyscom. Some rights reserved.

Using the Jekyll theme Chirpy.

A new version of content is available.