3.1 Ensure 'Server Authentication' Property is set to 'Windows Authentication Mode'

Information

Uses Windows Authentication to validate attempted connections.

Rationale:

Windows provides a more robust authentication mechanism than SQL Server authentication.

Impact:

Changing the login mode configuration requires a restart of the service.

Solution

Perform either the GUI or T-SQL method shown:

GUI Method

Open SQL Server Management Studio.

Open the Object Explorer tab and connect to the target database instance.

Right click the instance name and select Properties.

Select the Security page from the left menu.

Set the Server authentication setting to Windows Authentication Mode.

T-SQL Method

Run the following T-SQL in a Query Window:

USE [master]
GO
EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'LoginMode', REG_DWORD, 1
GO

Restart the SQL Server service for the change to take effect.

Default Value:

Windows Authentication Mode

See Also

https://workbench.cisecurity.org/benchmarks/7202

Item Details

Category: ACCESS CONTROL

References: 800-53|AC-2(1), CSCv7|16.2

Plugin: MS_SQLDB

Control ID: 8cba752f552fd2f471e2fb68131119503be497b9e0e7d446f33e2b39ba77b8b6