Restrict access to GlideSystemUserSession scriptable API
The client callable GlideSystemUserSessionSandbox scriptable API exposes GlideSystemUserSession's addErrorMessageNoSanitization and addInfoMessageNoSanitization methods to the JavaScript sandbox. This allows all users to call this method via script.
The methods gs.addErrorMessageNoSanitizationMessaging() and gs.addInfoMessageNoSanitization() are used within the scripting environment for logging and notifications. Both of these are available in the sandbox if this property is not set to the recommended value of false. The sandbox is a low privileged scripting environment available to unauthenticated and no role users. Both of these methods can be used to display unsanitized input to a user.
Ensure that the glide.sandbox.usersession.allow_unsanitized_messages system property is set to false. If this property does not exist on the System Properties [sys_properties] table, create the property.
More information
| Attribute | Description |
|---|---|
| Configuration name | glide.sandbox.usersession.allow_unsanitized_messages |
| Configuration type | System Properties (/sys_properties_list.do) |
| Data type | Boolean |
| Recommended value | false |
| Default value | true |
| Fallback value | true |
| Category | Access control |
| Security risk |
|
| Functional impact | None |
| Dependencies and prerequisites | None |