SV-213991r617437_rule
V-213991
SRG-APP-000431-DB-000388
SQL6-D0-012300
CAT II
10
Disable CLR support in SQL Server by executing the following query:
EXEC sp_configure 'clr enabled', 0
GO
RECONFIGURE
GO
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-213991
False
SQL6-D0-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
3993