Created
May 16, 2025 12:16
-
-
Save trycf/b889b65060c3fc5d8c8032103a6a9ec1 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, "rNQkUxfikwHOmX1Eo8kBmQ==", "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