Retrieving ColdFusion Administrator Passwords
Here is a few ways to get back into your ColdFusion Administrator. You can easily use this method to retrieve and reset your ColdFusion administrator passwords.
Use this .cfm script to retrieve the admin password:
<cfset password_key="4p0L@r1$">
<cfregistry action="GET" branch="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server" entry="AdminPassword" variable="adminpassword" type="String">
</cfregistry>
<cfregistry action="GET" branch="HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server" entry="StudioPassword" variable="studiopassword" type="String">
<cfoutput>
<strong>Admin Password:</strong><br />
#Evaluate("cfusion_Decrypt(adminpassword, PASSWORD_KEY)")# <br /><br />
<strong>RDS Password:</strong> <br />
#Evaluate("cfusion_Decrypt(studiopassword, PASSWORD_KEY)")# <br /><br />
</cfoutput>
</cfregistry>
Popularity: 4%



