The piecemeal approach got you this far, but there's something about b64 encoding and decoding mechanics that can create glitches when decoding pieces of code that were originally encoded as a whole. An example:
'the code' b64 encodes as "dGhlIGNvZGU="
break it as "dGhlI" and "GNvZGU="
"dGhlI" decodes as 'the' (so far so good)
"GNvZGU=" decodes as 'ÛÙ' (something got lost when breaking up the original)
But encoding d3l337 into b64 gets you ZDNsMzM3. See?WonkaNerdsRule wrote:... I put ZDNsMzM3I and did Base 64 to text and got d3l337 ...