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