Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/1516feb1c7940c7fe5234c162a3a3128 to your computer and use it in GitHub Desktop.
Save trycf/1516feb1c7940c7fe5234c162a3a3128 to your computer and use it in GitHub Desktop.
TryCF Gist
<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