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