| description | Welcome to cbSSO a ColdBox module to help integrate SSO into your application easily. |
|---|
Bundled in this module are several SSO provider implementations that allow you to quickly and easily integrate with Identity Providers such as Microsoft, Google, GitHub or Facebook using standard protocols like SAML and oAuth.
To install run
box install cbsso
Once installed you can configure your settings like so
// config/modules/cbsso.cfc
component {
function configure(){
return {
"providers": [
{
type: "GoogleProvider@cbsso",
clientId: getJavaSystem().getProperty( "GOOGLE_CLIENT_ID" ),
clientSecret: getJavaSystem().getProperty( "GOOGLE_CLIENT_SECRET" )
}
]
};
}
}
Your app now has the ability to direct users to Google for authentication!
The rest of this documentation will cover topics like
- Built-in Providers
- Custom Providers
- Configuration
- Accessing User Data
- SAML request replay protection and CacheBox configuration
The Microsoft SAML provider validates the signed assertion and binds it to the AuthNRequest that started the
login. The resulting response exposes the complete claim set, SAML NameID, and NameID format. See
Configuration, MicrosoftSAMLProvider,
and Handling the Identity Provider Response
for details.
The cbSSO module is maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered in the following format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
- Breaking backward compatibility bumps the major (and resets the minor and patch)
- New additions without breaking backward compatibility bumps the minor (and resets the patch)
- Bug fixes and misc changes bumps the patch
Apache 2 License: http://www.apache.org/licenses/LICENSE-2.0
- Code: https://github.com/coldbox-modules/cbsso
- Issues: https://github.com/coldbox-modules/cbsso/issues
The cbSSO module is a professional open-source software backed by Ortus Solutions, Corp offering services like:
- Custom Development
- Professional Support & Mentoring
- Training
- Server Tuning
- Security Hardening
- Code Reviews
- Much More
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." Romans 5:5
