SV-271328r1137657_rule
V-271328
SRG-APP-000243-DB-000373
SQLI-22-009800
CAT II
10
Configure SQL Server to effectively protect the private resources of one process or user from unauthorized access by another process or user.
To enable the use of [Common Criteria Compliance], from the query prompt:
EXEC SP_CONFIGURE 'show advanced options', 1;
RECONFIGURE WITH OVERRIDE;
EXEC SP_CONFIGURE 'common criteria compliance enabled', 1;
RECONFIGURE WITH OVERRIDE;
EXEC SP_CONFIGURE 'show advanced options', 0;
RECONFIGURE WITH OVERRIDE;
Review system documentation to determine whether common criteria compliance is required due to potential impact on system performance.
SQL Server Residual Information Protection (RIP) requires a memory allocation to be overwritten with a known pattern of bits before memory is reallocated to a new resource. Meeting the RIP standard can contribute to improved security; however, overwriting the memory allocation can slow performance. After the common criteria compliance enabled option is enabled, the overwriting occurs.
Review the Instance configuration:
SELECT value_in_use
FROM sys.configurations
WHERE name = 'common criteria compliance enabled'
If "value_in_use" is set to "1" this is not a finding.
If "value_in_use" is set to "0" this is a finding.
If no results are returned, common criteria compliance is not available in the installed version of SQL Server, this is a finding. Common criteria compliance is only supported in Enterprise and Developer editions of SQL Server.
Note: Enabling this feature may impact performance on highly active SQL Server instances. If an exception justifying setting SQL Server RIP to disabled (value_in_use set to "0") has been documented and approved, then this is downgraded to a CAT III finding.
V-271328
False
SQLI-22-009800
Review system documentation to determine whether common criteria compliance is required due to potential impact on system performance.
SQL Server Residual Information Protection (RIP) requires a memory allocation to be overwritten with a known pattern of bits before memory is reallocated to a new resource. Meeting the RIP standard can contribute to improved security; however, overwriting the memory allocation can slow performance. After the common criteria compliance enabled option is enabled, the overwriting occurs.
Review the Instance configuration:
SELECT value_in_use
FROM sys.configurations
WHERE name = 'common criteria compliance enabled'
If "value_in_use" is set to "1" this is not a finding.
If "value_in_use" is set to "0" this is a finding.
If no results are returned, common criteria compliance is not available in the installed version of SQL Server, this is a finding. Common criteria compliance is only supported in Enterprise and Developer editions of SQL Server.
Note: Enabling this feature may impact performance on highly active SQL Server instances. If an exception justifying setting SQL Server RIP to disabled (value_in_use set to "0") has been documented and approved, then this is downgraded to a CAT III finding.
M
5677