Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

CM08

Crypto (Medium)

CM08

For this challenge we are provided with a text file, however the text is unreadable.

Using a tool like CyberChef, we are able to try some different methods for decoding the text. One favorite method of many CTFs is to XOR each byte with some value (or series of values) to hide the flag in plain site. Using the CyberChef XOR Brute-Force Tool, we can confirm that is exactly the case using the value 0x80 as the key.

The flag is: Master_Of_Switching_Bits

CM08_1