South Sudan - Decode the RFID Tag (rev)

668B
Open

Here's the first few lines of the text file:

After doing some OSINT, this appears to be manchester encoding. Using https://rodyne.com/?p=641 the delimiter for the data seems to be 9 consecutive 1 bits. I also found this writeup on a very similar ctf challenge https://nacayoshi00.wordpress.com/2017/06/.

To get the message, after the sequence of 9 1's we need to split the bitstream into groups of five bits, and take the first 4 bits of every group as a character. We should not take into account the column parity row. Here's the solve script:

Last updated