SV-214029r617437_rule
V-214029
SRG-APP-000141-DB-000092
SQL6-D0-016300
CAT II
10
Modify the SQL Server's [sa] (system administrator) account by running the following script:
USE master;
GO
ALTER LOGIN [sa] WITH NAME = <new name>
GO
Verify the SQL Server default [sa] (system administrator) account name has been changed by executing the following query:
USE master;
GO
SELECT *
FROM sys.sql_logins
WHERE [name] = 'sa' OR [principal_id] = 1;
GO
If the login account name "SA" or "sa" appears in the query output, this is a finding.
V-214029
False
SQL6-D0-016300
Verify the SQL Server default [sa] (system administrator) account name has been changed by executing the following query:
USE master;
GO
SELECT *
FROM sys.sql_logins
WHERE [name] = 'sa' OR [principal_id] = 1;
GO
If the login account name "SA" or "sa" appears in the query output, this is a finding.
M
3993