Puppet Class: secure_windows::stig::v73411
- Defined in:
- manifests/stig/v73411.pp
Overview
This class manages: V-73411 Event Viewer must be protected from unauthorized modification and deletion.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'manifests/stig/v73411.pp', line 4
class secure_windows::stig::v73411 (
Boolean $enforced = false,
) {
if $enforced {
acl { 'C:\\Windows\\System32\\Eventvwr.exe':
inherit_parent_permissions => false,
permissions => [
{
'identity' => 'NT SERVICE\\TrustedInstaller',
'rights' => ['full'],
'affects' => 'self_only',
},
{
'identity' => 'S-1-5-32-544',
'rights' => ['read', 'execute'],
'affects' => 'self_only',
},
{
'identity' => 'S-1-5-18',
'rights' => ['read', 'execute'],
'affects' => 'self_only',
},
{
'identity' => 'S-1-5-32-545',
'rights' => ['read', 'execute'],
'affects' => 'self_only',
},
{
'identity' => 'S-1-15-2-1',
'rights' => ['read', 'execute'],
'affects' => 'self_only',
},
{
'identity' => 'S-1-15-2-2',
'rights' => ['read', 'execute'],
'affects' => 'self_only',
}
],
}
}
}
|