Difference between revisions of "ADF AjaxProxy CSRF Safe Mode"

From ADF Docs
Jump to: navigation, search
(CSRF_Token as a Data parameter (using jQuery.post):)
(CSRF_Token as a Data parameter (using jQuery.post):)
Line 24: Line 24:
 
<cfset csrfToken = application.ADF.csSecurity.getCSRF_Token()>
 
<cfset csrfToken = application.ADF.csSecurity.getCSRF_Token()>
  
 +
<cfoutput>
 
<script>
 
<script>
 
jQuery.post("#application.ADF.ajaxProxy#",
 
jQuery.post("#application.ADF.ajaxProxy#",
Line 29: Line 30:
 
   bean: 'dataService',
 
   bean: 'dataService',
 
   method: 'getData',
 
   method: 'getData',
   CSRF_Token: '#csrfToken#'
+
   CSRF_Token: '#TRIM(csrfToken)#'
 
}
 
}
 +
...
 +
</cfoutput>
 
</pre>
 
</pre>
 +
 +
Note: Due to a known CFML output issue which adds additional spaces to the value when calling a method, it is best to set a local variable when calling a method and then reference the local variable in your JavaScript ajax call.
  
 
==== CSRF_Token as a URL parameter (using jQuery.get): ====
 
==== CSRF_Token as a URL parameter (using jQuery.get): ====

Revision as of 13:29, 15 April 2020

IMPORTANT: This feature requires ADF 2.5 or above and CommonSpot 10.6.1 or 10.5.2 or above.

ADF AjaxProxy CSRF Safe Mode

The CommonSpot 10.6.1, 10.5.2 and the ADF 2.5 releases have added enhanced security to mitigate "Cross-Site Request Forgery" (CSRF) vulnerabilities.

ADF 2.5's security enhancement, "ajaxProxy CSRF Safe Mode" has been disabled by default and must be manually enabled to take advantage of this feature. This allows developers an opportunity to update their ADF and ADF App ajaxProxy related customizations, before enabling the CSRF attack prevention validation when using the ADF's AjaxProxy.

Enable the CSRF Safe Mode for local ajaxProxy requests

If your site is only using out of the box ADF and ADF Applications then you should enable the "ajaxProxy CSRF Safe Mode" immediately.

How to Enable CSRF Safe Mode

  • In your ADF.cfc in the /_cs_apps/ folder in your site root, add the following line:
enableADFcsrfSafeMode(true);
  • For new ADF installs, update the "enableADFcsrfSafeMode" line found in your site's '/_cs_apps/ADF.cfc' file, from "false" to "true" (see above).

Update Custom Local AjaxProxy Requests

If your site has custom code which uses the ADF's ajaxProxy for local requests, before you can enable "ajaxProxy CSRF Safe Mode" using the steps above, you will need to add the CSRF_Token parameter to your method call. Adding this extra parameter to the request will get the CSRF_token session token which is known by the server.

When the "ajaxProxy CSRF Safe Mode" is enabled, the CSRF token key/value pair is required when making local AjaxProxy requests along with your other request parameters either as a Data or URL parameter, otherwise your ajaxProxy requests will not validate and fail.

CSRF_Token as a Data parameter (using jQuery.post):

<cfset csrfToken = application.ADF.csSecurity.getCSRF_Token()>

<cfoutput>
<script>
jQuery.post("#application.ADF.ajaxProxy#",
{ 	
  bean: 'dataService',
  method: 'getData',
  CSRF_Token: '#TRIM(csrfToken)#'
}
...
</cfoutput>
Note: Due to a known CFML output issue which adds additional spaces to the value when calling a method, it is best to set a local variable when calling a method and then reference the local variable in your JavaScript ajax call.

CSRF_Token as a URL parameter (using jQuery.get):

jQuery.get("#application.ADF.ajaxProxy#?bean=dataService&method=getData&CSRF_Token=#application.ADF.csSecurity.getCSRF_Token()#")


WARNING: Enabling the "CSRF Safe Mode" without using the ADF 2.5 ready Apps or updating your custom ajaxProxy local requests will limit functionality!