Shuffle

Description

country: Borneo

challengearrow-up-right

Solution

shuffle-1

If you take a closer look at broken image with hex editor (I use VSCode Hex Editor) and compare to any png image you'll notice that some bytes are swapped.

Let's say original is: 00 11 22 33 44 55 66 77, Corrupted image: 00 11 44 55 22 33 66 77

shuffle-2

Using this python script convert corrupted image to flag:

shuffle-3
circle-check

Last updated