Skip to content

Latest commit

 

History

History
49 lines (26 loc) · 1.8 KB

File metadata and controls

49 lines (26 loc) · 1.8 KB

Planning Virtual Distruction

Forensics

Challenge

In his quest for world domination, Omkar realized that he needed to conquer more than just land, so he turned to conquering the internet. His first target was becoming the king of youtube by overcoming Pewdiepie. As a result, he embodied his Indian culture, creating the channel TSeries. In a step to stop Omkar's world domination, we need to regain control of the internet. Perhaps you can uncover his plans hidden in this image and make a DIFFERENCE before it is too late.

Hint: range widths are [8,8,16,32,64,128]

Solution

Pixel-value differencing

Search the acronym of the title (PVD) and we find out about Pixel-value differencing (PVD) steganography

This is the original paper of Pixel value differencing (PVD) by Wu and Tsai

Additional resources explaining the PVD algorithm

The hint also gives us a range, which is the standard quantization range table as proposed in the academic paper.

screenshots/0.jpg

Implementation

I did an initial test where I implemented a function calculate_bits(). It is based on the following description from the papers.

screenshots/1.png

When running it through all cosecutive pairs of pixels, I observed a lorum ipsum statement.

screenshots/2.png

My initial test was scanning from left to right only. However, the paper stated a zig-zag pattern.

screenshots/3.png

I modified my code to scan zig-zag and we get the flag

screenshots/4.png

Flag

tjctf{r1p_p3wd5_t53r1s_b4d}