Howto Require SSL for ColdFusion Administrator
A good security practice is to require SSL for ColdFusion administrator access (an even better practice is to limit access to localhost). This should only take less than five minutes on either Apache or IIS.
Require HTTPS on Apache 2
<Location /CFIDE/administrator> SSLRequireSSL </Location>
Just add the above to your httpd.conf file, just make sure it appears below LoadModule ssl_module. Restart Apache, and you should get a 403 Forbidden response on http and it should work over https. I tested this on Apache 2.2, I think it should work on prior versions as well, but I have not tested them.
Require HTTPS on ISS
- Open up IIS Manager Console
- Right click on the
CFIDE/administrator/directory - Click Directory Security Tab
- Under Secure Communications click Edit
- Enable Require secure channel (SSL)
Tweet
add to del.icio.us
| Tags: ssl, coldfusion, administrator, cfide, security
Related Entries
- Is your ColdFusion Administrator Actually Public? - April 28, 2010
- Changing the ColdFusion CFIDE Scripts Location - January 10, 2011
- Locking Down ColdFusion Presentation Slides - August 4, 2010
- J2EE Sessions in CF10 Uses Secure Cookies - April 5, 2013
- Learn about ColdFusion Security at cfObjective 2013 - March 6, 2013
Trackbacks
Comments
@Michael check out http://www.adobe.com/devnet/coldfusion/articles/cf7_security_04.html for info on locking down the CF admin in IIS (including limiting it to localhost). The article is for CF7 but I have tested it with CF8.
After "Select Require SSL – Click apply"
A question here is for Client certificates –
Ignore is least secure (default) – does not require clients to verify their identity before gaining access to content
Accept – accept client cert (if provided) & to verify client identity before allowing access to content
Require – requires cert to verify client identity before allowing access to content
Post a Comment
Recent Entries
- Writing Secure CFML cfObjective 2013 Slides
- Upgrading to Java 7 on Linux
- J2EE Sessions in CF10 Uses Secure Cookies
- Learn about ColdFusion Security at cfObjective 2013
- Session Loss and Session Fixation in ColdFusion
- FuseGuard 2.3 Released
- CKEditor Spell Checker Plugin
- Adobe Says Go Ahead and Upgrade your ColdFusion JVM





