Proxy Authentication
Proxy authentication support for CAS v1+ protocols is enabled by default, thus it is entirely a matter of CAS client configuration to leverage proxy authentication features.
Note that each registered application in the registry must explicitly be configured to allow for proxy authentication. See this guide to learn about registering services in the registry.
Disabling proxy authentication components is recommended for deployments that wish to strategically avoid proxy
authentication as a matter of security policy. The simplest means of removing support is to remove support for the
/proxy
and /proxyValidate
endpoints on the CAS server. The relevant sections of cas-servlet.xml
are listed
below and the aspects related to proxy authentication may either be commented out or removed altogether.
Proxy Handlers
Components responsible to determine what needs to be done to handle proxies.
CAS10ProxyHandler
Proxy handler compliant with CAS v1 protocol that is designed to not handle proxy requests and simply return nothing as proxy support in the protocol is absent.
CAS20ProxyHandler
Protocol handler compliant with CAS v2 protocol that is responsible to callback the URL provided and give it a pgtIou and a pgtId.
Handling SSL-enabled Proxy URLs
By default, CAS ships with a bundled HTTP client that is partly responsible to callback the URL for proxy authentication. Note that this URL need also be authorized by the CAS service registry before the callback can be made. See this guide for more info.
If the callback URL is authorized by the service registry, and if the endpoint is under HTTPS and protected by an SSL certificate, CAS will also attempt to verify the validity of the endpoint’s certificate before it can establish a successful connection. If the certificate is invalid, expired, missing a step in its chain, self-signed or otherwise, CAS will fail to execute the callback.
The HTTP client of CAS does present a local trust store that is similar to that of the Java platform. It is recommended that this trust store be used to handle the management of all certificates that need to be imported into the platform to allow CAS to execute the callback URL successfully. While by default, the local trust store to CAS is empty, CAS will still utilize both the default and the local trust store. The local trust store should only be used for CAS-related functionality of course, and the trust store file can be carried over across CAS and Java upgrades, and certainly managed by the source control system that should host all CAS configuration.
The trust store configuration is inside the applicationContext.xml
file, as such:
Returning PGT in Validation Response
In situations where using CAS20ProxyHandler
may be undesirable, such that invoking a callback url to receive the proxy granting ticket is not feasible,
CAS may be configured to return the proxy-granting ticket id directly in the validation response. In order to successfully establish trust between the
CAS server and the application, private/public key pairs are generated by the client application and then the public key distributed and
configured inside CAS. CAS will use the public key to encrypt the proxy granting ticket id and will issue a new attribute <proxyGrantingTicketId>
in the validation response, only if the service is authorized to receive it.
Note that the return of the proxy granting ticket id is only carried out by the CAS validation response, provided the client
application issues a request to the /p3/serviceValidate
endpoint (or /p3/proxyValidate
). Other means of returning attributes to CAS, such as SAML1
will not support the additional returning of the proxy granting ticket.
Configuration
Register Service
Once you have received the public key from the client application owner, it must be first registered inside the CAS server’s service registry. The service that holds the public key above must also be authorized to receive the PGT as an attribute for the given attribute release policy of choice.
Decrypt the PGT id
Once the client application has received the proxyGrantingTicket
id attribute in the CAS validation response, it can decrypt it
via its own private key. Since the attribute is base64 encoded by default, it needs to be decoded first before
decryption can occur. Here’s a sample code snippet:
Components
-
RegisteredServiceCipherExecutor
Defines how to encrypt data based on registered service’s public key, etc. -
DefaultRegisteredServiceCipherExecutor
A default implementation of theRegisteredServiceCipherExecutor
that will use the service’s public key to initialize the cipher to encrypt and encode the value. All results are converted to base-64. -
CasAttributeEncoder
Parent component that defines how a CAS attribute is to be encoded and signed in the CAS validation response. -
DefaultCasAttributeEncoder
The default implementation of the attribute encoder that will use a per-service key-pair to encrypt. It will attempt to query the collection of attributes that resolved to determine which attributes can be encoded. Attributes will be encoded via aRegisteredServiceCipherExecutor
.