Property reference

glide.security.csrf_previous.time_limit

The glide.security.csrf_previous.time_limit property sets the expiration time for secure tokens in seconds. It is crucial for maintaining security against cross-site request forgery attacks, with a default expiration of one day.

Default: 86400 Type: integer Application: Global

Key questions about this property

The answers below summarize the purpose, scope, default effect, and review scenarios for this property.

What does it do? This property defines the duration a secure token remains valid, expiring when the user session ends unless specific conditions are met.
What area does it affect? Security and session management
What does the default mean? The default value is "86400", which sets the baseline numeric behavior for this property.
When should you review it? Review this property when adjusting session security settings or addressing CSRF vulnerabilities.

Out of the box property record

Raw metadata from the property record.

Property name glide.security.csrf_previous.time_limit
Sys ID e05a7a940a0a0ba2005ec1ae61ad9466
Type integer
Application Global
Default value 86400
Description Time in seconds for a secure token to expire. When the user session expires, the secure token expires with it, unless the "allowing reuse of expired tokens are allowed" property is enabled, and its within the time frame described by this property This token is used to prevent cross site request forgery attacks. (default is 86400 seconds or 1 day)
Updated 2024-05-25 05:04:41

Sources

Official references and nearby text excerpts where this property appears.

Documentation excerpt View supporting context
Context preview Snippet 1
... determine whether access to a particular resource should be granted or denied. It only allows access to resources to those users permitted to use them. Anti-CSRF token validation time The glide.security.csrf_previous.time_limit property specifies the time in seconds for a secure token to expire. The glide.security.csrf_previous.time_limit system property determines the time in seconds for a secure token to expire. When the user ...