I am working on a challenge that includes decrypting a piece of ciphertext. The sample decryption provided is as follows:
KDEwMTAwMDExMTAxMDEwMTAwMTEwMDExMTAxMDAxMDAwMDExMTEwMDAwMTEwMTAwMTAxMTAxMTAwMTAxMDEwMCwxMDAxKQ —> HaCkTrIcK
My first attempt was to try decoding it as base64 and I could get the following:
(101000111010101001100111010010000111100001101001011011001010100,1001)
It seems to be a couple of encrypted binary text along with a key (most probably) but I couldn't find a way to decode it.
So, my question is - is there any way for me to figure out just how the binary data is encoded and how to decode it?