Skip to content

SQL Server must prevent unauthorized and unintended information transfer via shared system resources.

An XCCDF Rule

Description

<VulnDiscussion>The purpose of this control is to prevent information, including encrypted representations of information, produced by the actions of a prior user/role (or the actions of a process acting on behalf of a prior user/role) from being available to any current user/role (or current process) that obtains access to a shared system resource (e.g., registers, main memory, secondary storage) after the resource has been released back to the information system. Control of information in shared resources is also referred to as object reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>

ID
SV-213975r961149_rule
Severity
Medium
References
Updated



Remediation - Manual Procedure

Configure SQL Server to effectively protect the private resources of one process or user from unauthorized access by another user or process. 
 
sp_configure 'show advanced options', 1;   
GO   
RECONFIGURE;   
GO