BoxLang 🚀 A New JVM Dynamic Language Learn More...
This module will enhance your ColdBox applications by providing out-of-the-box security in the form of:
validator
Welcome to SecureLand!
Apache License, Version 2.0.
Use CommandBox to install
box install cbsecurity
You can then continue to configure the firewall in your config/Coldbox.cfc.
Below are the security settings you can use for this module. Remember
you must create the cbsecurity and cbauth
structs in your ColdBox.cfc or you can create a
config/modules/cbsecurity.cfc if you are on ColdBox 7.
moduleSettings = {
cbauth = {
// This is the path to your user object that contains the credential validation methods
userServiceClass = "entities.user"
},
cbsecurity = {
/**
* --------------------------------------------------------------------------
* Authentication Services
* --------------------------------------------------------------------------
* Here you will configure which service is in charge of providing authentication for your application.
* By default we leverage the cbauth module which expects you to connect it to a database via your own User Service.
*
* Available authentication providers:
* - cbauth : Leverages your own UserService that determines authentication and user retrieval
* - basicAuth : Leverages basic authentication and basic in-memory user registration in our configuration
* - custom : Any other service that adheres to our IAuthService interface
*/
authentication : {
// The WireBox ID of the authentication service to use which must adhere to the cbsecurity.interfaces.IAuthService interface.
"provider" : "authenticationService@cbauth",
// WireBox ID of the user service to use when leveraging user authentication, we default this to whatever is set
// by cbauth or basic authentication. (Optional)
"userService" : "",
// The name of the variable to use to store an authenticated user in prc scope on all incoming authenticated requests
"prcUserVariable" : "oCurrentUser"
},
/**
* --------------------------------------------------------------------------
* Basic Auth
* --------------------------------------------------------------------------
* These settings are used so you can configure the hashing patterns of the user storage
* included with cbsecurity. These are only used if you are using the `BasicAuthUserService` as
* your service of choice alongside the `BasicAuthValidator`
*/
basicAuth : {
// Hashing algorithm to use
hashAlgorithm : "SHA-512",
// Iterates the number of times the hash is computed to create a more computationally intensive hash.
hashIterations : 5,
// User storage: The `key` is the username. The value is the user credentials that can include
// { roles: "", permissions : "", firstName : "", lastName : "", password : "" }
users : {}
},
/**
* --------------------------------------------------------------------------
* CSRF - Cross Site Request Forgery Settings
* --------------------------------------------------------------------------
* These settings configures the cbcsrf module. Look at the module configuration for more information
*/
csrf : {
// By default we load up an interceptor that verifies all non-GET incoming requests against the token validations
enableAutoVerifier : false,
// A list of events to exclude from csrf verification, regex allowed: e.g. stripe\..*
verifyExcludes : [],
// By default, all csrf tokens have a life-span of 30 minutes. After 30 minutes, they expire and we aut-generate new ones.
// If you do not want expiring tokens, then set this value to 0
rotationTimeout : 30,
// Enable the /cbcsrf/generate endpoint to generate cbcsrf tokens for secured users.
enableEndpoint : false,
// The WireBox mapping to use for the CacheStorage
cacheStorage : "CacheStorage@cbstorages",
// Enable/Disable the cbAuth login/logout listener in order to rotate keys
enableAuthTokenRotator : true
},
/**
* --------------------------------------------------------------------------
* Firewall Settings
* --------------------------------------------------------------------------
* The firewall is used to block/check access on incoming requests via security rules or via annotation on handler actions.
* Here you can configure the operation of the firewall and especially what Validator will be in charge of verifying authentication/authorization
* during a matched request.
*/
firewall : {
// Auto load the global security firewall automatically, else you can load it a-la-carte via the `Security` interceptor
"autoLoadFirewall" : true,
// The Global validator is an object that will validate the firewall rules and annotations and provide feedback on either authentication or authorization issues.
"validator" : "AuthValidator@cbsecurity",
// Activate handler/action based annotation security
"handlerAnnotationSecurity" : true,
// The global invalid authentication event or URI or URL to go if an invalid authentication occurs
"invalidAuthenticationEvent" : "",
// Default Auhtentication Action: override or redirect when a user has not logged in
"defaultAuthenticationAction" : "redirect",
// The global invalid authorization event or URI or URL to go if an invalid authorization occurs
"invalidAuthorizationEvent" : "",
// Default Authorization Action: override or redirect when a user does not have enough permissions to access something
"defaultAuthorizationAction" : "redirect",
// Firewall database event logs.
"logs" : {
"enabled" : false,
"dsn" : "",
"schema" : "",
"table" : "cbsecurity_logs",
"autoCreate" : true
},
// Firewall Rules, this can be a struct of detailed configuration
// or a simple array of inline rules
"rules" : {
// Use regular expression matching on the rule match types
"useRegex" : true,
// Force SSL for all relocations
"useSSL" : false,
// A collection of default name-value pairs to add to ALL rules
// This way you can add global roles, permissions, redirects, etc
"defaults" : {},
// You can store all your rules in this inline array
"inline" : [],
// If you don't store the rules inline, then you can use a provider to load the rules
// The source can be a json file, an xml file, model, db
// Each provider can have it's appropriate properties as well. Please see the documentation for each provider.
"provider" : { "source" : "", "properties" : {} }
}
},
/**
* --------------------------------------------------------------------------
* Security Visualizer
* --------------------------------------------------------------------------
* This is a debugging panel that when active, a developer can visualize security settings and more.
* You can use the `securityRule` to define what rule you want to use to secure the visualizer but make sure the `secured` flag is turned to true.
* You don't have to specify the `secureList` key, we will do that for you.
*/
visualizer : {
"enabled" : false,
"secured" : false,
"securityRule" : {}
},
/**
* --------------------------------------------------------------------------
* Security Headers
* --------------------------------------------------------------------------
* This section is the way to configure cbsecurity for header detection, inspection and setting for common
* security exploits like XSS, ClickJacking, Host Spoofing, IP Spoofing, Non SSL usage, HSTS and much more.
*/
securityHeaders : {
// Master switch for security headers
"enabled" : true,
// If you trust the upstream then we will check the upstream first for specific headers
"trustUpstream" : false,
// Content Security Policy
// Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks,
// including Cross-Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft, to
// site defacement, to malware distribution.
// https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
"contentSecurityPolicy" : {
// Disabled by defautl as it is totally customizable
"enabled" : false,
// The custom policy to use, by default we don't include any
"policy" : ""
},
// The X-Content-Type-Options response HTTP header is a marker used by the server to indicate that the MIME types advertised in
// the Content-Type headers should be followed and not be changed => X-Content-Type-Options: nosniff
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
"contentTypeOptions" : { "enabled" : true },
"customHeaders" : {
// Name : value pairs as you see fit.
},
// Disable Click jacking: X-Frame-Options: DENY OR SAMEORIGIN
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
"frameOptions" : { "enabled" : true, "value" : "SAMEORIGIN" },
// HTTP Strict Transport Security (HSTS)
// The HTTP Strict-Transport-Security response header (often abbreviated as HSTS)
// informs browsers that the site should only be accessed using HTTPS, and that any future attempts to access it
// using HTTP should automatically be converted to HTTPS.
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security,
"hsts" : {
"enabled" : true,
// The time, in seconds, that the browser should remember that a site is only to be accessed using HTTPS, 1 year is the default
"max-age" : "31536000",
// See Preloading Strict Transport Security for details. Not part of the specification.
"preload" : false,
// If this optional parameter is specified, this rule applies to all of the site's subdomains as well.
"includeSubDomains" : false
},
// Validates the host or x-forwarded-host to an allowed list of valid hosts
"hostHeaderValidation" : {
"enabled" : false,
// Allowed hosts list
"allowedHosts" : ""
},
// Validates the ip address of the incoming request
"ipValidation" : {
"enabled" : false,
// Allowed IP list
"allowedIPs" : ""
},
// The Referrer-Policy HTTP header controls how much referrer information (sent with the Referer header) should be included with requests.
// Aside from the HTTP header, you can set this policy in HTML.
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
"referrerPolicy" : { "enabled" : true, "policy" : "same-origin" },
// Detect if the incoming requests are NON-SSL and if enabled, redirect with SSL
"secureSSLRedirects" : { "enabled" : false },
// Some browsers have built in support for filtering out reflected XSS attacks. Not foolproof, but it assists in XSS protection.
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection,
// X-XSS-Protection: 1; mode=block
"xssProtection" : { "enabled" : true, "mode" : "block" }
},
/**
* --------------------------------------------------------------------------
* Json Web Tokens Settings
* --------------------------------------------------------------------------
* Here you can configure the JWT services for operation and storage. In order for your firewall
* to leverage JWT authentication/authorization you must make sure you use the `JwtAuthValidator` as your
* validator of choice; either globally or at the module level.
*/
jwt : {
// The issuer authority for the tokens, placed in the `iss` claim
"issuer" : "",
// The jwt secret encoding key, defaults to getSystemEnv( "JWT_SECRET", "" )
"secretKey" : getSystemSetting( "JWT_SECRET", "" ),
// by default it uses the authorization bearer header, but you can also pass a custom one as well.
"customAuthHeader" : "x-auth-token",
// The expiration in minutes for the jwt tokens
"expiration" : 60,
// If true, enables refresh tokens, longer lived tokens (not implemented yet)
"enableRefreshTokens" : false,
// The default expiration for refresh tokens, defaults to 30 days
"refreshExpiration" : 10080,
// The Custom header to inspect for refresh tokens
"customRefreshHeader" : "x-refresh-token",
// If enabled, the JWT validator will inspect the request for refresh tokens and expired access tokens
// It will then automatically refresh them for you and return them back as
// response headers in the same request according to the customRefreshHeader and customAuthHeader
"enableAutoRefreshValidator" : false,
// Enable the POST > /cbsecurity/refreshtoken API endpoint
"enableRefreshEndpoint" : true,
// encryption algorithm to use, valid algorithms are: HS256, HS384, and HS512
"algorithm" : "HS512",
// Which claims neds to be present on the jwt token or `TokenInvalidException` upon verification and decoding
"requiredClaims" : [] ,
// The token storage settings
"tokenStorage" : {
// enable or not, default is true
"enabled" : true,
// A cache key prefix to use when storing the tokens
"keyPrefix" : "cbjwt_",
// The driver to use: db, cachebox or a WireBox ID
"driver" : "cachebox",
// Driver specific properties
"properties" : {
"cacheName" : "default"
}
}
}
}
};
This module will automatically register the Security
firewall interceptor for you according to the settings shown above and
using the interceptor => (cbsecurity.interceptor.Security).
Info You can deactivate this and load it as a manual interceptor via the
autoLoadFirewallsetting.
The interceptor will intercept all calls to your application via the
preProcess() interception point. Each request will then
be validated against registered security rules and against any active
handler/action security annotations (if active) via a Security
Validator. Also, if the request is made to a module, each module can
have its own separate validator apart from the global one.
Info You can deactivate annotation driven security via the
handlerAnnotationSecuritysetting.
How does the interceptor know a user doesn't have access? Well, here
is where you register a Validator CFC (validator setting)
with cbsecurity that implements two validation functions:
ruleValidator() and annotationValidator().
Info You can find an interface for these methods in
cbsecurity.interfaces.ISecurityValidator
The validator's job is to tell back to the firewall if they are allowed access and if they don't, what type of validation they broke: authentication or authorization or just plainly block the request.
Authenticationis when a user is NOT logged in
Authorizationis when a user does not have the proper permissions to access an event/handler or action.
Once the firewall has the results, and the user is NOT allowed access. Then the following will occur:
_securedURL so it
can be used in relocationsprc as cbsecurity_matchedRule
prc as cbsecurity_validatorResults
authentication the
cbSecurity_onInvalidAuthentication interception will be announcedauthorization the
cbSecurity_onInvalidAuthorization interception will be announcedauthentication the default action for
that type will be executed (An override or a relocation) invalidAuthenticationEvent
authorization the default action for
that type will be executed (An override or a relocation) invalidAuthorizationEvent
block then the firewall will block
the request.If you are securing a module, then the module has the capability to
override the global settings if it declares them in its ModuleConfig.cfc
Rules can be declared in your config/ColdBox.cfc or in
any module's ModuleConfig.cfc inline, or they can come
from the following sources:
getSecurityRules() method
from itA rule is a struct that can be composed of the following elements.
All of them are optional except the secureList.
rules = [
{
"whitelist" : "", // A list of white list events or Uri's
"securelist" : "", // A list of secured list events or Uri's
"match" : "event", // Match the event or a url
"roles" : "", // Attach a list of roles to the rule
"permissions" : "", // Attach a list of permissions to the rule
"redirect" : "", // If rule breaks, and you have a redirect it will redirect here
"overrideEvent" : "", // If rule breaks, and you have an event, it will override it
"useSSL" : false, // Force SSL,
"action" : "", // The action to use (redirect|override|block) when no redirect or overrideEvent is defined in the rule.
"module" : "", // metadata we can add so mark rules that come from modules
"httpMethods" : "*", // Match all HTTP methods or particular ones as a list
"allowedIPs" : "*" // The rule only matches if the IP list matches. It can be a list of IPs to match.
};
]
The global rules come from the config/Coldbox.cfc and
they are defined within the cbsecurity module setting.
// Module Settings
moduleSettings = {
// CB Security
cbSecurity : {
firewall : {
// Global Relocation when invalid access is detected, instead of each rule declaring one.
"invalidAuthenticationEvent" : "main.index",
// Global override event when invalid access is detected, instead of each rule declaring one.
"invalidAuthorizationEvent" : "main.index",
// Default invalid action: override or redirect or block when invalid access is detected, default is to redirect
"defaultAuthenticationAction" : "block",
// Default invalid action: override or redirect or block when invalid access is detected, default is to redirect
"defaultAuthorizationAction" : "redirect",
// The global security rules as inline
"rules" : [
// should use direct action and do a global redirect
{
"whitelist": "",
"securelist": "admin",
"match": "event",
"roles": "admin",
"permissions": "",
"action" : "redirect"
},
// no action, use global default action
{
"whitelist": "",
"securelist": "noAction",
"match": "url",
"roles": "admin",
"permissions": ""
},
// Using overrideEvent only, so use an explicit override
{
"securelist": "ruleActionOverride",
"match": "url",
"overrideEvent": "main.login"
},
// direct action, use global override
{
"whitelist": "",
"securelist": "override",
"match": "url",
"roles": "",
"permissions": "",
"action" : "override"
},
// Using redirect only, so use an explicit redirect
{
"securelist": "ruleActionRedirect",
"match": "url",
"redirect": "main.login"
}
]
}
}
};
Module rules come from the ModuleConfig.cfc by creating
a cbSecurity key in the module's settings struct:
// module settings - stored in modules.name.settings
settings = {
// CB Security Rules to append to global rules
cbsecurity = {
firewall : {
// Module Relocation when an invalid access is detected, instead of each rule declaring one.
"invalidAuthenticationEvent" : "mod1:secure.index",
// Default Authentication Action: override or redirect or block when a user has not logged in
"defaultAuthenticationAction" : "override",
// Module override event when an invalid access is detected, instead of each rule declaring one.
"invalidAuthorizationEvent" : "mod1:secure.auth",
// Default Authorization Action: override or redirect or block when a user does not have enough permissions to access something
"defaultAuthorizationAction" : "override",
// Custom validator for the module.
"validator" : "JwtAuthValidator@cbsecurity"
// You can define your security rules here or externally via a source
"rules" : [
{
"secureList" : "mod1:home"
},
{
"secureList" : "mod1/modOverride",
"match" : "url",
"action" : "override"
}
]
}
}
};
The firewall will inspect handlers for the secured
annotation. This annotation can be added to the entire handler, an
action, or both. The default value of the secured
annotation is a boolean true. This means we need a user
to be authenticated to access it.
// Secure this handler
component secured{
function index(event,rc,prc){}
function list(event,rc,prc){}
}
// Same as this
component secured=true{
}
// Not the same as this
component secured=false{
}
// Or this
component{
function index(event,rc,prc) secured{
}
function list(event,rc,prc) secured="list"{
}
}
You can also give the annotation some value, which can be anything you like: A list of roles, a role, a list of permissions, metadata, etc. Whatever it is, this is the authorization context, and the security validator must be able to not only authenticate but authorize the context, or an invalid authorization will occur.
// Secure this handler
component secured="admin,users"{
function index(event,rc,prc) secured="list"{
}
function save(event,rc,prc) secured="write"{
}
}
By annotating the handler and the action, you create a cascading security model where they need to be able to access the handler first, and only then will the action be evaluated for access.
Now that we have seen security rules and annotations let's see how to
validate them. Create a CFC or use any CFC in your models
and add the following functions: ruleValidator() and annotationValidator()
/**
* This function is called once an incoming event matches a security rule.
* You will receive the security rule that matches and an instance of the ColdBox controller.
*
* You must return a struct with the following keys:
* - allow:boolean True, user can continue access, false, invalid access actions will ensue
* - type:string(authentication|authorization) The type of block that ocurred. Either an authentication or an authorization issue.
* - messages:string Any messages for debugging
*
* @return { allow:boolean, type:string(authentication|authorization), messages:string }
*/
struct function ruleValidator( required rule, required controller );
/**
* This function is called once access to a handler/action is detected.
* You will receive the secured annotation value and an instance of the ColdBox Controller
*
* You must return a struct with the following keys:
* - allow:boolean True, user can continue access, false, invalid access actions will ensue
* - type:string(authentication|authorization) The type of block that ocurred. Either an authentication or an authorization issue.
* - messages:string Any messages for debugging
*
* @return { allow:boolean, type:string(authentication|authorization), messages:string }
*/
struct function annotationValidator( required securedValue, required controller );
Each validator must return a struct with the following keys:
allow:boolean A boolean indicator if authentication or
authorization was violatedtype:stringOf(authentication|authorization) A string
that indicates the type of violation: authentication or authorization.messages:string A string of messages used for debuggingHere is a sample validator using permission-based security in both rules and annotation context
struct function ruleValidator( required rule, required controller ){
return permissionValidator( rule.permissions, controller, rule );
}
struct function annotationValidator( required securedValue, required controller ){
return permissionValidator( securedValue, controller );
}
private function permissionValidator( permissions, controller, rule ){
var results = { "allow" : false, "type" : "authentication", "messages" : "" };
var user = security.getCurrentUser();
// First check if user has been authenticated.
if( user.isLoaded() AND user.isLoggedIn() ){
// Do we have the right permissions
if( len( arguments.permissions ) ){
results.allow = user.checkPermission( arguments.permission );
results.type = "authorization";
} else {
results.allow = true;
}
}
return results;
}
When invalid access or authorizations occur, the interceptor will announce the following events:
cbSecurity_onInvalidAuthentication - When an invalid
authentication is detectedcbSecurity_onInvalidAuthorization - When an invalid
authorization is detectedYou will receive the following data in the interceptData struct:
ip : The offending Ip addressrule : The security rule intercepted or empty if annotationssettings : The firewall settingsvalidatorResults : The validator resultsannotationType : The annotation type intercepted,
handler or action or empty if rule drivenprocessActions : A boolean indicator that defaults to
true. If you change this to false, then the interceptor won't fire
the invalid actions. Usually this means, you manually will do them.cbSecurity_onFirewallBlock - When the firewall blocks
an incoming request with a 403You will receive the following data in the interceptData struct:
type : The type of block: hostheader or ipvalidation
config : The configuration structure of the ruleincomingIP : The incoming ip if the type is ipValiation
incomingHost : The incoming host if the type is hostHeader
This module also ships with a security visualizer that will document
all your security rules and settings in a nice panel. In order to
activate it you must add the visualizer setting to your
config and mark it as enabled. Once enabled you can
navigate to: /cbsecurity, and you will be presented with
the visualizer.
Important The visualizer is disabled by default
Please read our Contributing guide first.
To run the tests, start one of the servers from the
/test-harness directory.
You will also need a MySQL database seeded with the
/test-harness/tests/resources/cbsecurity.sql file. Docker
makes this a cinch:
docker run -d \
--name=cbsecurity \
-p 3306:3306 \
-e MYSQL_ROOT_PASSWORD=mysql \
-e MYSQL_DATABASE=cbsecurity \
-v $(pwd)/test-harness/tests/resources/cbsecurity.sql:/docker-entrypoint-initdb.d/cbsecurity.sql \
mysql:5
Finally, run the tests by visiting your server's
/tests/runner.cfm file.
Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp www.coldbox.org | www.luismajano.com | www.ortussolutions.com
Because of His grace, this project exists. If you don't like this, then don't read it, it's not for you.
"Therefore being justified by faith, we have peace with God through our Lord Jesus Christ: By whom also we have access by faith into this grace wherein we stand, and rejoice in hope of the glory of God. And not only so, but we glory in tribulations also: knowing that tribulation worketh patience; And patience, experience; and experience, hope: And hope maketh not ashamed; because the love of God is shed abroad in our hearts by the Holy Ghost which is given unto us. ." Romans 5:5
"I am the way, and the truth, and the life; no one comes to the Father, but by me (JESUS)" Jn 14:1-12
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
.github/copilot-instructions.md — concise AI-agent guidance covering module architecture, validators, interceptor flows, and developer workflows (install, test, server start).test-harness/tests/runner.cfm and box.json scripts).renderView() to view to be ColdBox 7 compliant now.clobcbsecurity_logs is hard coded instead of using module settingtop statements for MSSQL Server on the DBLogger thanks to @irvirvtransientCache=false to auth User to avoid any issues when doing security operationsUser for extra securityUser auth was not serializing the id of the user in the mementifier configguest() method to CBSecurity model and Authorizable delegategetActionsReport() was not defaulting the type's structure, so exceptions would arise when there was no data in the visualizercreatePassword() on the CBSecurity model to generate secure, random passwords with letters, symbols and numbers.cbcsrf upgraded to version 3, we missed in the previous release.JwtAuthValidator instead of mixing concerns with the JwtService. You will have to update your configuration to use this validator instead of the JwtServiceuseSSL is now defaulted to true for all security relocations as the defaultjwt settings from the ModuleConfig to the JwtServiceCBAuthValidator has been renamed to just AuthValidator this way it can be used with ANY authentication service instead of binding it to just cbauth. This validator just relies on the IAuthUser interface now.AuthValidator now can validate permissions and roles according to our IAuthUser interface but can be used on ANY authentication service that implements IAuthServiceblock and the fireall will block the request with a 401 Unathorized page.cbSecurity_onFirewallBlock announced whenever the firewall blocks a request into the system with a 403.DBTokenStorage now rotates using async scheduler and not direct usage anymore.cbcsrf module settings into the cbsecurity settings as csrf.allowedIPs key into any rule and add which IP Addresses are allowed into the match. By default, it matches all IPs.httpMethods key into any rule and add which HTTP methods are allowed into the match. By default, it matches all HTTP Verbs.securityHeaders configuration to allow a developer to protect their apps from common exploits: xss, HSTS, Content Type Options, host header validation, ip validation, click jacking, non-SSL redirection and much more.prcUserVariable on authenticated calls via preProcess() no matter the validator usedattempt() and fromUser() and refreshToken() : refreshCustomClaimsTokenInvalidException and TokenExpiredException to the refreshToken endpointdatasource on queryExecute that was causing a read issue.refreshToken( token, customClaims) method when refreshing tokensgetJWTCustomClaims( payload )threadsafe annotation to all models to prevent invalid creations under load, since we don't use circular dependencies./cbsecurity/refreshtToken for secure refresh token generationJwtService : refreshToken( token )authenticate() if the payload is empty and throw the appropriate exceptionsauthenticate( payload ) to receive a payload to authenticateforce argument getTokenStorage( force = false )parseToken() to choose to store and authenticate or just parseIAuthUser no longer requires the isLoggedIn() method. This is now fully optional.jti could have collisions if tokens created at the same time, add randomness to itTokenExpirationException not relaeyed from the base jwt libraryvariables.settings.jwt.tokenStorage.enabled is disabled all invalidations failed, make sure if the storage is disabled to not throw storage exceptions.CBSecurity model service as : getRealIp()getHTTPREquestData() send false so we DON'T retrieve the http body when we just need the headersgetRealIp() when dealing with listsgetRealIP() to only return originating user's source IP, if the forwarded ip is a listsecureSameUser method to throw when passed a different user #29 (https://github.com/coldbox-modules/cbsecurity/pull/29)configure() to the afterAspectsLoad() interception point to allow for modules to declare the validator if needed.afterAspectsLoad() to allow for module based invalid events to work.cbSecurity_onInvalidAuthorization interception point declaration. Previously, the typo would prevent ColdBox from allowing the correctly-typed interception point from ever triggering an interception listener.userValidator() method has been changed to roleValidator(), but the error message was forgotten! So the developer is told they need a userValidator() method... because the userValidator method is no longer supported. :/isLoggedIn() method now makes sure that a jwt is in place and valid, before determining if you are logged in or not.focal and mysql8 in preparation for latest updatesrules default to empty arrayparseToken( token ) now accepts a token of your choice to work with in the request or it will continue to discover it if not passed.invalidateAll() which invalidates all tokens in the token storagecbSecurity_onJWTInvalidateAllTokens that fires once all tokens in the storage are clearedprc scope when using attempt() to be consistent with API callscbsecurity in JWTService callsscope and it is a space separated list. This doesn't change the User interface for it. (@wpdebruin)permissions instead of rolesFeature : Upgraded to cbAuth @ 5.xFeature : We now include the cbcsrf module to allow for protections of cross site request forgery vectors. Please see all the features included in this module here: https://github.com/coldbox-modules/cbcsrfFeature Introduction of the cbSecurity model: https://coldbox-security.ortusbooks.com/intro/release-history/whats-new-with-2.3.0Task : Cfformatting everywherebug : verify should pass verify=true into the jwt library for proper verificationFeature : Migrated from the jwt to the jwtcfml (https://forgebox.io/view/jwt-cfml) library to expand encoding/decoding capabilities to support RS and ES algorithms:
Feature : Added a new convenience method on the JWT Service: isTokenInStorage( token ) to verify if a token still exists in the token storageFeature : If no jwt secret is given in the settings, we will dynamically generate one that will last for the duration of the application scope.Feature : New setting for jwt struct: issuer, you can now set the issuer of tokens string or if not set, then cbSecurity will use the home page URI as the issuer of authority string.Feature : All tokens will be validated that the same iss (Issuer) has granted the tokenImprove : Ability to have defaults for all JWT settings instead of always typing them in the configsImprove : More cfformating goodness!Bug : Invalidation of tokens was not happening due to not using the actual key for the storageFeature : cbauth upgraded to version 4moduleSettings approach instead of root approach (See compat section)rulesModelMethod now defaults to getSecurityRules()CFValidator@cbsecurity instead of always being inline.overrideEvent element to a rule. If that is set, then we will override the incoming event via event.overrideEvent() instead of doing a relocation using the redirect rule element.rules key. This will allow you to build the rules in your config instead of a rule source.cbSecurity_onInvalidAuthentication, cbSecurity_onInvalidAuhtorizationdefaultAuthorizationAction setting which defaults to redirectinvalidAuthenticationEvent setting that can be useddefaultAuthenticationAction setting which defaults to redirectinvalidAuthorizationEvent setting that can be usedprc as cbSecurity_matchedRule so you can see which security rule was used for processing invalid access actions.prc as cbSecurity_validatorResultssettings.cbSecurity key.validator setting. So each module can have their own security validator schema.enableSecurityVisualizer setting. Disabled by default.// module settings - stored in modules.name.settings
settings = {
// CB Security Rules to append to global rules
cbsecurity = {
// The module invalid authentication event or URI or URL to go if an invalid authentication occurs
"invalidAuthenticationEvent" : "",
// Default Auhtentication Action: override or redirect when a user has not logged in
"defaultAuthenticationAction" : "redirect",
// The module invalid authorization event or URI or URL to go if an invalid authorization occurs
"invalidAuthorizationEvent" : "",
// Default Authorization Action: override or redirect when a user does not have enough permissions to access something
"defaultAuthorizationAction" : "redirect",
// You can define your security rules here or externally via a source
"rules" : [
{
"secureList" : "mod1:home"
},
{
"secureList" : "mod1/modOverride",
"match" : "url",
"action" : "override"
}
]
}
};
secured annotation. Which can be boolean or a list of permissions, roles or whatever you like.handlerAnnotationSecurity boolean setting.interfaces.*warn() with the offending Ip address.autoLoadFirewall. The interceptor will auto load and be registered as cbsecurity@global in WireBox.cbSecurity settings in your config/ColdBox.cfc to inside the moduleSettingsvalidatorModel dropped in favor of just validator to be a WireBox IdpreEventSecurity it was too chatty and almost never useduserValidator has been renamed to ruleValidator and also added the annotationValidator as well.rulesSource removed you can now use the rules setting
rules can be: array, db, model, filepathfilepath has json or xml in it, we will use that as the source stylerulesFile removed you can now use the rules setting.cbsecurity settings in master config.getPlugin() deprecated calls to new approach.$throw() method to native throw() method.
$
box install cbsecurity