Skip to content

SQL Server must maintain a separate execution domain for each executing process.

An XCCDF Rule

Description

<VulnDiscussion>Database management systems can maintain separate execution domains for each executing process by assigning each process a separate address space. Each process has a distinct address space so that communication between processes is controlled through the security functions, and one process cannot modify the executing code of another process. Maintaining separate execution domains for executing processes can be achieved, for example, by implementing separate address spaces.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>

ID
SV-213991r879802_rule
Severity
Medium
References
Updated



Remediation - Manual Procedure

Disable CLR support in SQL Server by executing the following query: 
 
EXEC sp_configure 'clr enabled', 0 
GO 
 
RECONFIGURE