SV-276301r1149812_rule
V-276301
SRG-APP-000141-DB-000093
MSQL-D0-007300
CAT II
10
Disable use of or remove any CLR code that is not authorized.
To disable the use of CLR, from the query prompt:
EXEC SP_CONFIGURE 'clr enabled', 0;
RECONFIGURE WITH OVERRIDE;
To determine if CLR is enabled, execute the following command:
SELECT name, value, value_in_use
FROM sys.configurations
WHERE name = 'clr enabled'
If "value_in_use" is a "1", review the system documentation to determine whether the use of CLR is approved. If it is not approved, this is a finding.
V-276301
False
MSQL-D0-007300
To determine if CLR is enabled, execute the following command:
SELECT name, value, value_in_use
FROM sys.configurations
WHERE name = 'clr enabled'
If "value_in_use" is a "1", review the system documentation to determine whether the use of CLR is approved. If it is not approved, this is a finding.
M
5711