Puppet Class: secure_windows::stig::v73785

Defined in:
manifests/stig/v73785.pp

Overview

This class manages: V-73785 The Impersonate a client after authentication user right must only be assigned to Administrators, Service, Local Service, and Network Service.

Parameters:

  • enforced (Boolean) (defaults to: false)


5
6
7
8
9
10
11
12
13
14
15
16
# File 'manifests/stig/v73785.pp', line 5

class secure_windows::stig::v73785 (
  Boolean $enforced = false,
) {
  if $enforced {
    local_security_policy { 'Impersonate a client after authentication':
      ensure         => 'present',
      policy_setting => 'SeImpersonatePrivilege',
      policy_type    => 'Privilege Rights',
      policy_value   => '*S-1-5-19,*S-1-5-20,*S-1-5-32-544,*S-1-5-6',
    }
  }
}