SV-271273r1109234_rule
V-271273
SRG-APP-000092-DB-000208
SQLI-22-004700
CAT II
10
Configure the SQL audit(s) to automatically start during system startup.
ALTER SERVER AUDIT [<Server Audit Name>] WITH STATE = ON
Execute the following:
SELECT name AS 'Audit Name',
status_desc AS 'Audit Status',
audit_file_path AS 'Current Audit File'
FROM sys.dm_server_audit_status
WHERE status_desc = 'STARTED'
Ensure the SQL STIG Audit is configured to initiate session auditing upon startup.
When audits are enabled, they start up when the instance starts. Refer to https://msdn.microsoft.com/en-us/library/cc280386.aspx#Anchor_2
Check if an audit is configured and enabled by executing the following query:
SELECT name AS 'Audit Name',
status_desc AS 'Audit Status',
audit_file_path AS 'Current Audit File'
FROM sys.dm_server_audit_status
WHERE status_desc = 'STARTED'
All currently defined audits for the SQL server instance will be listed. If no audits are returned, this is a finding.
V-271273
False
SQLI-22-004700
When audits are enabled, they start up when the instance starts. Refer to https://msdn.microsoft.com/en-us/library/cc280386.aspx#Anchor_2
Check if an audit is configured and enabled by executing the following query:
SELECT name AS 'Audit Name',
status_desc AS 'Audit Status',
audit_file_path AS 'Current Audit File'
FROM sys.dm_server_audit_status
WHERE status_desc = 'STARTED'
All currently defined audits for the SQL server instance will be listed. If no audits are returned, this is a finding.
M
5677