Created
May 16, 2025 16:04
-
-
Save trycf/1516feb1c7940c7fe5234c162a3a3128 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 = "0xFpIgUsyk8x8uGKIAmr/wFqTICab4FdFQnKRf8Gm/LbGpUOU2uhkw61oxoaOGY0"; | |
var token = Decrypt(encryptedString, "dDF3/2HGKu7m7VTq34Eg6g== | |
", "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