|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/dcostello2/_mmServerScripts/ |
Upload File : |
<!---
**
* Name:Macromedia
*
* Copyright (c) 2002 Macromedia. All Rights Reserved.
* DO NOT REDISTRIBUTE THIS SOFTWARE IN ANY WAY WITHOUT THE EXPRESSED
* WRITTEN PERMISSION OF MACROMEDIA.
--->
<cftry>
<cfsetting showdebugoutput="no">
<cfset factory = createObject("java", "coldfusion.server.ServiceFactory")>
<cfset request.security = factory.securityService>
<cfset checkSecurity=request.security.RDSSecurityEnabled>
<cfcatch type="any">
<cfset checkSecurity="false">
</cfcatch>
</cftry>
<cfif checkSecurity>
<cfif IsDefined('form.rdspassword')>
<cfset rdspassword="#form.rdspassword#">
<cfelseif IsDefined('URL.rdspassword')>
<cfset rdspassword="#URL.rdspassword#">
<cfelse>
<cfabort>
</cfif>
<cfif NOT request.security.checkRDSPassword(rdspassword)>
<cfif NOT request.security.checkAdminPassword(rdspassword)>
<cfabort>
</cfif>
</cfif>
</cfif>