SV-82339r1_rule
V-67849
SRG-APP-000141-DB-000091
SQL4-00-016855
CAT II
10
Either, in SQL Server Management Studio, Object Explorer, right-click on the SQL Server instance; select Properties; examine the Filestream section.
If Filestream is not required, set Filestream Access Level to "Disabled."
If Filestream is required only at the Transact-SQL query level, set Filestream Access Level to "Transact-SQL access enabled."
Restart the SQL Server instance.
Or, in a query tool, run this script, substituting the correct value for <Level>:
EXEC sys.sp_configure N'filestream access level', N'<Level>';
GO
RECONFIGURE WITH OVERRIDE;
GO
The <Level> values are:
0 - Disabled
1 - Transact-SQL access enabled
2 - Full access enabled
Determine whether Filestream is required to support the database(s) in this instance of SQL Server.
Either, in SQL Server Management Studio, Object Explorer, right-click on the SQL Server instance; select Properties; examine the Filestream section.
If Filestream Access Level is "Disabled", this is not a finding.
If Filestream Access Level is "Transact-SQL access enabled" or "Full access enabled," and Filestream is not required, this is a finding.
If Filestream Access Level is "Full access enabled," but only Transact-SQL access is required, this is a finding.
Or, in a query tool, run this code:
EXEC sys.sp_configure N'filestream access level';
Review the number in the config_value column. If it is 0, this is not a finding.
If config_value is 1 or 2, and Filestream is not required, this is a finding.
If config_value is 2, but only Transact-SQL access is required, this is a finding.
V-67849
False
SQL4-00-016855
Determine whether Filestream is required to support the database(s) in this instance of SQL Server.
Either, in SQL Server Management Studio, Object Explorer, right-click on the SQL Server instance; select Properties; examine the Filestream section.
If Filestream Access Level is "Disabled", this is not a finding.
If Filestream Access Level is "Transact-SQL access enabled" or "Full access enabled," and Filestream is not required, this is a finding.
If Filestream Access Level is "Full access enabled," but only Transact-SQL access is required, this is a finding.
Or, in a query tool, run this code:
EXEC sys.sp_configure N'filestream access level';
Review the number in the config_value column. If it is 0, this is not a finding.
If config_value is 1 or 2, and Filestream is not required, this is a finding.
If config_value is 2, but only Transact-SQL access is required, this is a finding.
M
2639