Created
May 16, 2025 12:02
-
-
Save trycf/e8993ffe51362fc957a2ada387dc6def to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
// Define the encryption key | |
var key = "your-secret-key"; | |
// Encrypted string | |
var encryptedString = "00BBCE47C367526FE7B19BD5DA50489A7E6AD6B88752F565C3FD6CA5BAB25B9877C461BA44C54074"; | |
var token = Decrypt(encryptedString, "LmlsdzZf6VzurgSYpHWb7A==", "BLOWFISH", "hex"); | |
// Output the decrypted token | |
writeDump(token); | |
</cfscript> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment