Extending Encrypted ColdFusion Application.cfm Functionality

Posted August 15, 2008 at 2:11 PM

Tags: ColdFusion

We just had an interesting problem here at work. We are building an eCommerce site that needs to be shut down on certain days. Normally, this would not be a problem - we'd just put some code in the Application.cfm or Application.cfc that would check the date on each request and either render the normal page or render a "Closed" page. The problem that we came up against was that we are implementing an existing software product in which the Application.cfm file is encrypted. This means that we can't go into the file and simply add the desired functionality.

At first, I wasn't sure what to do, but then something dawned on me: the Application.cfm code does NOT need to be in an Application.cfm. Well, ultimately it does, but the code itself doesn't have to be located in a file named Application.cfm. So, what we did was rename the existing, encrypted Application.cfm to be named "EncryptedApplication.cfm". Then, we created a new Application.cfm that simply included the old Application.cfm file:

 Launch code in new window » Download code as text file »

  • <!---
  • Include the template that handles the functionality and
  • display of the "Sorry, We're Closed" page.
  • --->
  • <cfinclude template="site_down.cfm" />
  •  
  • <!--- Include original Application file. --->
  • <cfinclude template="EncryptedApplication.cfm" />

This way, our "site_down.cfm" template can execute on every page request and prevent the page load, if needed. And, we don't lose the functionality of our original Application.cfm file.

Small tip, but I thought this might inspire people who are working with any off-the-shelf products that have encrypted files.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




Reader Comments

Aug 15, 2008 at 2:46 PM // reply »
11 Comments

Remember that if a directory contains both Application.cfc and Application.cfm, only the CFC is run. So another option would have been to use onRequestStart() in Application.cfc. This would just avoid renaming the existing Application.cfm


Aug 15, 2008 at 2:48 PM // reply »
3 Comments

Can't you just unencrypt it? The same exe that's worked since CF5 still works doesn't it?


Aug 15, 2008 at 2:52 PM // reply »
7,507 Comments

@Adrian,

Then we would have lost all of the functionality of the Application.cfm. But yes, if we built this thing form scratch, I would go with OnRequestStart().

@Russell,

True, I could have unencrypted it, I do have the application, but I believe that would have violated the product terms of use for the eCommerce system. That changes that anything bad would have come of it are pretty much nill, but even still, this seemed like the quicker approach :)


Aug 15, 2008 at 2:55 PM // reply »
34 Comments

I'm curious: if you're allowed to say, why do they want their eCommerce site shut down on certain days?

Most online vendors tremble at the thought of their ordering system being down for even an hour or two, lest they miss a sale.


Aug 15, 2008 at 2:57 PM // reply »
3 Comments

@Ben
Ah ya, the ever elusive terms and conditions... Sorry didn't realize this was a paid for app, I was just assuming this was something a prior developer did because they thought it would help.

Technically speaking, hasn't encrypting cfm files pretty much been a worthless security effort since about 99-00?


Aug 15, 2008 at 3:01 PM // reply »
7,507 Comments

@Brian,

It's for religious reasons. There are certain days / times were the client is not supposed to be actively making money.

@Russell,

Yeah, sorry I was not clear on that. But, definitely, encrypting the file really does nothing. I (and I assume many others) have that CFDecrypt.exe program :)


Aug 15, 2008 at 3:24 PM // reply »
38 Comments

Very clever!

I'm going to use this trick next time my wife is mad because I wasn't paying attention: "I wasn't ignoring you, honey! I was just cfincluding your conversation, which allows me to do what I'm working on now while still taking in your most excellent and awe inspiring wisdom."


Aug 15, 2008 at 3:25 PM // reply »
7,507 Comments

Ha ha ha ha :)


Aug 15, 2008 at 4:20 PM // reply »
11 Comments

@Ben:

<cfcomponent hint="Application.cfc">

<cfinclude template="Application.cfm" />

<cffunction name="onRequestStart">

<!--- yadda yadda yadda --->

</cffunction>

</cfcomponent>


Aug 15, 2008 at 4:41 PM // reply »
38 Comments

Just a thought but couldn't you add an OnRequestStart.cfm to your app which checked the date as you're using Application.cfm?


Aug 15, 2008 at 5:41 PM // reply »
7,507 Comments

@Adrian,

Good thought, but unfortunately, the two don't jive well together:

http://www.bennadel.com/index.cfm?dax=blog:731.view

@John,

Is there an OnRequestStart.cfm? Or do you mean like a custom page in the app?


Aug 16, 2008 at 6:03 AM // reply »
38 Comments

Sorry, Commented a bit too late last night (on UK time)! I meant that you would probably need to put the cfinclude that Adrian suggested in the OnRequestStart method of Application.cfc


Jul 17, 2009 at 2:11 PM // reply »
2 Comments

Do you know of any way to use this trick to "extend" Application.cfm (analogous to what Application.cfc lets you do?)

e.g. you have:
/root/Application.cfm (general application stuff)

/root/mySubSection/Application.cfm (want to include root Application.cfm along with some sub section specific stuff.)

I tried <cfinclude template="/Application.cfm" /> but that did not have the desired effect.


Jul 18, 2009 at 12:53 PM // reply »
7,507 Comments

@Mike,

Maybe use a relative path:

<cfinclude template="../Application.cfm" />

What error is it giving you?


Jul 20, 2009 at 12:06 PM // reply »
2 Comments

@Ben Nadel,

Thanks! Using a relative path worked perfectly.

When I used an absolute path I was getting CF debug output in the content panel of the page - that may be specific to our Application.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 15, 2010 at 9:21 PM
Tim Cracked The GMail - CFMailPart Puzzle!
@Bruce Holm, > So I think sending two parts is a minimum. > Giving the user the option of opting for > text only saves bandwidth [and storage] How does sending two cfmailparts with bot ... read »
Mar 15, 2010 at 9:02 PM
Tim Cracked The GMail - CFMailPart Puzzle!
I should have added that about 5% of our database of opt-in accounts in the past couple years have chosen Text. The default is HTML email if they don't choose. ... read »
Mar 15, 2010 at 8:52 PM
Tim Cracked The GMail - CFMailPart Puzzle!
Ben, From my research there are reasons for sending out email with a text content part in them because there are still some folks who only want text email. For one it's their way of filtering out spa ... read »
Mar 15, 2010 at 6:02 PM
FLEX On jQuery: Decouple Components With Event Listeners
@Banned, When you write it in FLEX, it probably has hundreds, if not thousands, of lines of code running... it's just that someone else wrote most of it for you :) Not to say you don't reap tremend ... read »
Mar 15, 2010 at 5:48 PM
Ask Ben: Finding The SQL Data Type Of A ColdFusion Query Column
Hi Ben, This solved a major problem we had with an app. We were using the cfdbInfo tag to get just the column names and dataTypes. It was taking (for some, unknown to me, reason) 2-3 minutes per t ... read »
Mar 15, 2010 at 5:46 PM
FLEX On jQuery: Decouple Components With Event Listeners
Whew, that's a lot of JavaScript code to maintain! Although I like the direction you're going here (and have used similar techniques in the past), this seems excessively code-intensive to me. As ... read »
Mar 15, 2010 at 4:16 PM
AxisFault: ColdFusion Web Services And XML Data Types
@Charles, No problem :) ... read »
Mar 15, 2010 at 4:15 PM
AxisFault: ColdFusion Web Services And XML Data Types
yes this help. thanks again. ... read »