SV-82311r1_rule
V-67821
SRG-APP-000141-DB-000090
SQL4-00-016310
CAT II
10
Remove the publicly available "AdventureWorks" database from SQL Server by running the following script:
USE master;
GO
DROP DATABASE AdventureWorks;
GO
Check SQL Server for the existence of the publicly available "AdventureWorks" database by performing the following query:
SELECT name FROM sysdatabases WHERE name LIKE 'AdventureWorks%';
If the "AdventureWorks" database is present, this is a finding.
V-67821
False
SQL4-00-016310
Check SQL Server for the existence of the publicly available "AdventureWorks" database by performing the following query:
SELECT name FROM sysdatabases WHERE name LIKE 'AdventureWorks%';
If the "AdventureWorks" database is present, this is a finding.
M
2639