Puppet Class: secure_windows::stig::v73679

Defined in:
manifests/stig/v73679.pp

Overview

V-73679 Services using Local System that use Negotiate when reverting to NTLM authentication must use the computer identity instead of authenticating anonymously.

Parameters:

  • enforced (Boolean) (defaults to: false)


4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'manifests/stig/v73679.pp', line 4

class secure_windows::stig::v73679 (
  Boolean $enforced = false,
) {

  if $enforced {

    registry::value { 'v73679':
      key   => 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa',
      value => 'UseMachineId',
      type  => 'dword',
      data  => '0x00000001',
    }

  }

}