Ticket Expiration Policies
CAS supports a pluggable and extensible policy framework to control the expiration policy of ticket-granting tickets (TGT) and service tickets (ST). Both TGT and ST expiration policy beans are defined in the /cas-server-webapp/src/main/webapp/WEB-INF/spring-configuration/ticketExpirationPolicies.xml
file in the CAS distribution.
Ticket expiration policies are not specific to a particular kind of ticket, so it is possible to apply a policy intended for service tickets to ticket-granting tickets, although it may make little sense to do so.
Ticket-Granting Ticket Policies
TGT expiration policy governs the time span during which an authenticated user may grant STs with a valid (non-expired) TGT without having to reauthenticate. An attempt to grant a ST with an expired TGT would require the user to reauthenticate to obtain a new (valid) TGT.
TimeoutExpirationPolicy
The default expiration policy applied to TGTs provides for most-recently-used expiration policy, similar to a Web server session timeout. For example, a 2-hour time span with this policy in effect would require a TGT to be used every 2 hours or less, otherwise it would be marked as expired.
Parameters
timeToKillInMilliSeconds
- Maximum amount of inactivity in ms from the last time the ticket was used beyond which it is considered expired.
Usage Example
HardTimeoutExpirationPolicy
The hard timeout policy provides for finite ticket lifetime as measured from the time of creation. For example, a 4-hour time span for this policy means that a ticket created at 1PM may be used up until 5PM; subsequent attempts to use it will mark it expired and the user will be forced to reauthenticate.
Parameters
timeToKillInMilliSeconds
- Total ticket lifetime in ms.
Usage Example
ThrottledUseAndTimeoutExpirationPolicy
The throttled timeout policy extends the TimeoutExpirationPolicy with the concept of throttling where a ticket may be used at most every N seconds. This policy was designed to thwart denial of service conditions where a rogue or misconfigured client attempts to consume CAS server resources by requesting high volumes of service tickets in a short time.
Parameters
timeToKillInMilliSeconds
- Maximum amount of inactivity in ms from the last time the ticket was used beyond which it is considered expired.timeInBetweenUsesInMilliSeconds
- The minimum amount of time permitted between consecutive uses of a ticket.
Usage Example
NeverExpiresExpirationPolicy
The never expires policy allows tickets to exist indefinitely.
Use of this policy has significant consequences to overall security policy and should be enabled only after thorough review by a qualified security team. There are also implications to server resource usage for the ticket registries backed by filesystem storage. Since disk storage for tickets can never be reclaimed for those registries with this policy in effect, use of this policy with those ticket registry implementations is strongly discouraged.
Usage Example
RememberMeDelegatingExpirationPolicy
This policy implements applies to long term authentication features of CAS known as “Remember Me”.
Usage Example
Service Ticket Policies
MultiTimeUseOrTimeoutExpirationPolicy
This is the default policy applied to service tickets where a ticket is expired after a fixed number of uses or after a maximum period of inactivity elapses.
Parameters
numberOfUses
- Maximum number of times the ticket can be used.timeToKill
- Maximum amount of inactivity from the last time the ticket was used beyond which it is considered expired.timeUnit
- The unit of time based on whichtimeToKill
will be calculated.