SV-271359r1137659_rule
V-271359
SRG-APP-000431-DB-000388
SQLI-22-012300
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;
Review the server documentation to determine whether use of CLR assemblies is required. Run the following query to determine whether CLR is enabled for the instance:
SELECT name, value, value_in_use
FROM sys.configurations
WHERE name = 'clr enabled'
If "value_in_use" is a "1" and CLR is not required, this is a finding.
V-271359
False
SQLI-22-012300
Review the server documentation to determine whether use of CLR assemblies is required. Run the following query to determine whether CLR is enabled for the instance:
SELECT name, value, value_in_use
FROM sys.configurations
WHERE name = 'clr enabled'
If "value_in_use" is a "1" and CLR is not required, this is a finding.
M
5677