finiki222 1 Easy code to use, works, tested. :fiesta: [hide] pass your cipher from cloudflare emails to the decrypt parameter list. function decrypt(ciphertext) { var output = ""; var key = hex_at(ciphertext, 0); for(var i = 2; i < ciphertext.length; i += 2) { var plaintext = hex_at(ciphertext, i) ^ key; output += String.fromCharCode(plaintext); } output = decodeURIComponent(escape(output)); return output; } function hex_at(str, index) { var r = str.substr(index, 2); return parseInt(r, 16); } [/hide] edit: forgot a closing bracket :fuck: leave a like if you liked :D Quote Share this post Link to post Share on other sites
blackdragon 0 Easy code to use, works, tested. :fiesta: thanks man :kek: Quote Share this post Link to post Share on other sites