Introduction
WELCOME TO THE COLDBOX SECURITY MODULE
This module will provide your application with a security rule engine.
LICENSE Apache License, Version 2.0.
IMPORTANT LINKS
SYSTEM REQUIREMENTS
Lucee 4.5+
ColdFusion 9+
INSTRUCTIONS
Just drop into your modules folder or use CommandBox to install
box install cbsecurity
You will then need to configure the interceptor via the cbsecurity
settings in your main ColdBox.cfc
or you can also declare the interceptor manually by leveraging the class: cbsecurity.interceptors.Security
. If you define the cbsecurity
settings, then the module will load the interceptor automatically for you with those settings.
You can find all the documentation here: https://github.com/ColdBox/cbox-security/wiki
Security Rules
Security rules can come from xml, json, query, memory or custom locations. You will find some examples in this module's config
folder.
Settings
Below are the security settings you can use for this module. Remember you must create the cbsecurity
struct in your ColdBox.cfc
:
Manual Interceptor Declaration
Here is a sample declaration you can use in your ColdBox.cfc
:
Last updated