Class: SecurityPolicy
- Inherits:
-
Object
- Object
- SecurityPolicy
- Defined in:
- lib/puppet_x/lsp/security_policy.rb
Overview
This class is used to convert the policy values to the format that secedit.exe expects It also contains the mapping of the policy names to the registry keys This class is used by the local_security_policy type
Constant Summary collapse
- EVENT_TYPES =
['Success,Failure', 'Success', 'Failure', 'No auditing'].freeze
- STATE_TYPES =
%w[enabled disabled].freeze
Class Method Summary collapse
-
.convert_policy_hash(policy_hash) ⇒ Object
converts the policy value inside the policy hash to conform to the secedit standards.
-
.convert_policy_value(policy_hash, value) ⇒ Object
converts the policy value to machine values.
- .convert_registry_value(name, value) ⇒ Object
-
.event_audit_mapper(policy_value) ⇒ Object
Converts a event number to a word.
-
.event_to_audit_id(event_audit_name) ⇒ Object
Converts a event number to a word.
-
.find_mapping_from_policy_desc(desc) ⇒ Object
returns the key and hash value given the policy desc.
-
.find_mapping_from_policy_name(name) ⇒ Object
returns the key and hash value given the policy name.
- .lsp_mapping ⇒ Object
- .user_to_sid(value) ⇒ Object
- .valid_lsp?(name) ⇒ Boolean
-
.validate_policy_value(resource_hash, value) ⇒ Object
validates the policy value.
Instance Method Summary collapse
Class Method Details
.convert_policy_hash(policy_hash) ⇒ Object
converts the policy value inside the policy hash to conform to the secedit standards
36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 36 def self.convert_policy_hash(policy_hash) policy_hash[:policy_value] = case policy_hash[:policy_type] when 'Privilege Rights' convert_privilege_right(policy_hash[:ensure], policy_hash[:policy_value]) when 'Event Audit' event_to_audit_id(policy_hash[:policy_value]) when 'Registry Values' SecurityPolicy.convert_registry_value(policy_hash[:name], policy_hash[:policy_value]) else policy_hash[:policy_value] end policy_hash end |
.convert_policy_value(policy_hash, value) ⇒ Object
converts the policy value to machine values
112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 112 def self.convert_policy_value(policy_hash, value) sp = SecurityPolicy.new # I would rather not have to look this info up, but the type code will not always have this info handy # without knowing the policy type we can't figure out what to convert policy_type = find_mapping_from_policy_desc(policy_hash[:name])[:policy_type] case policy_type.to_s when 'Privilege Rights' value = sp.convert_privilege_right(policy_hash[:ensure], value) end value end |
.convert_registry_value(name, value) ⇒ Object
103 104 105 106 107 108 109 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 103 def self.convert_registry_value(name, value) value = value.to_s return value if value.split(',').count > 1 policy_hash = find_mapping_from_policy_desc(name) "#{policy_hash[:reg_type]},#{value}" end |
.event_audit_mapper(policy_value) ⇒ Object
Converts a event number to a word
51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 51 def self.event_audit_mapper(policy_value) case policy_value.to_s when '3' 'Success,Failure' when '2' 'Failure' when '1' 'Success' else 'No auditing' end end |
.event_to_audit_id(event_audit_name) ⇒ Object
Converts a event number to a word
65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 65 def self.event_to_audit_id(event_audit_name) case event_audit_name when 'Success,Failure' 3 when 'Failure' 2 when 'Success' 1 when 'No auditing' 0 else event_audit_name end end |
.find_mapping_from_policy_desc(desc) ⇒ Object
returns the key and hash value given the policy desc
89 90 91 92 93 94 95 96 97 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 89 def self.find_mapping_from_policy_desc(desc) name = desc.downcase _key, value = lsp_mapping.find do |key, _hash| key.downcase == name end raise KeyError, "#{desc} is not a valid policy" unless value value end |
.find_mapping_from_policy_name(name) ⇒ Object
returns the key and hash value given the policy name
81 82 83 84 85 86 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 81 def self.find_mapping_from_policy_name(name) key, value = lsp_mapping.find do |_key, hash| hash[:name] == name end [key, value] end |
.lsp_mapping ⇒ Object
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 152 def self.lsp_mapping @lsp_mapping ||= { # Password policy Mappings 'Enforce password history' => { name: 'PasswordHistorySize', policy_type: 'System Access', data_type: :integer, policy_default: '0', }, 'Maximum password age' => { name: 'MaximumPasswordAge', policy_type: 'System Access', data_type: :integer, policy_default: '42', }, 'Minimum password age' => { name: 'MinimumPasswordAge', policy_type: 'System Access', data_type: :integer, policy_default: '0', }, 'Minimum password length' => { name: 'MinimumPasswordLength', policy_type: 'System Access', data_type: :integer, policy_default: '0', }, 'Password must meet complexity requirements' => { name: 'PasswordComplexity', policy_type: 'System Access', data_type: :boolean, policy_default: 'enabled', }, 'Relax minimum password length limits' => { name: 'MACHINE\System\CurrentControlSet\Control\SAM\RelaxMinimumPasswordLengthLimits', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Store passwords using reversible encryption' => { name: 'ClearTextPassword', policy_type: 'System Access', data_type: :boolean, policy_default: 'disabled', }, 'Account lockout duration' => { name: 'LockoutDuration', policy_type: 'System Access', data_type: :integer, policy_default: '30', }, 'Account lockout threshold' => { name: 'LockoutBadCount', policy_type: 'System Access', data_type: :integer, policy_default: '0', }, 'Allow Administrator account lockout' => { name: 'AllowAdministratorLockout', policy_type: 'System Access', data_type: :boolean, policy_default: '1', }, 'Reset account lockout counter after' => { name: 'ResetLockoutCount', policy_type: 'System Access', data_type: :integer, policy_default: '30', }, # Audit Policy Mappings 'Audit account logon events' => { name: 'AuditAccountLogon', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit account management' => { name: 'AuditAccountManage', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit directory service access' => { name: 'AuditDSAccess', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit logon events' => { name: 'AuditLogonEvents', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit object access' => { name: 'AuditObjectAccess', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit policy change' => { name: 'AuditPolicyChange', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit privilege use' => { name: 'AuditPrivilegeUse', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit process tracking' => { name: 'AuditProcessTracking', policy_type: 'Event Audit', policy_default: 'No auditing', }, 'Audit system events' => { name: 'AuditSystemEvents', policy_type: 'Event Audit', policy_default: 'No auditing', }, # User rights mapping 'Access Credential Manager as a trusted caller' => { name: 'SeTrustedCredManAccessPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Access this computer from the network' => { name: 'SeNetworkLogonRight', policy_type: 'Privilege Rights', policy_default: '*S-1-1-0,*S-1-5-32-544,*S-1-5-32-545,*S-1-5-32-551', }, 'Act as part of the operating system' => { name: 'SeTcbPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Add workstations to domain' => { name: 'SeMachineAccountPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Adjust memory quotas for a process' => { name: 'SeIncreaseQuotaPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-20,*S-1-5-32-544', }, 'Allow log on locally' => { name: 'SeInteractiveLogonRight', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-32-545,*S-1-5-32-551', }, 'Allow log on through Remote Desktop Services' => { name: 'SeRemoteInteractiveLogonRight', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-32-555', }, 'Back up files and directories' => { name: 'SeBackupPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-32-551', }, 'Bypass traverse checking' => { name: 'SeChangeNotifyPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-1-0,*S-1-5-19,*S-1-5-20,*S-1-5-32-544,*S-1-5-32-545,*S-1-5-32-551', }, 'Change the system time' => { name: 'SeSystemtimePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-32-544', }, 'Change the time zone' => { name: 'SeTimeZonePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-32-544', }, 'Create a pagefile' => { name: 'SeCreatePagefilePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Create a token object' => { name: 'SeCreateTokenPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Create global objects' => { name: 'SeCreateGlobalPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-20,*S-1-5-32-544,*S-1-5-6', }, 'Create permanent shared objects' => { name: 'SeCreatePermanentPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Create symbolic links' => { name: 'SeCreateSymbolicLinkPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Debug programs' => { name: 'SeDebugPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Deny access to this computer from the network' => { name: 'SeDenyNetworkLogonRight', policy_type: 'Privilege Rights', policy_default: '', }, 'Deny log on as a batch job' => { name: 'SeDenyBatchLogonRight', policy_type: 'Privilege Rights', policy_default: '', }, 'Deny log on as a service' => { name: 'SeDenyServiceLogonRight', policy_type: 'Privilege Rights', policy_default: '', }, 'Deny log on locally' => { name: 'SeDenyInteractiveLogonRight', policy_type: 'Privilege Rights', policy_default: '', }, 'Deny log on through Remote Desktop Services' => { name: 'SeDenyRemoteInteractiveLogonRight', policy_type: 'Privilege Rights', policy_default: '', }, 'Enable computer and user accounts to be trusted for delegation' => { name: 'SeEnableDelegationPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Force shutdown from a remote system' => { name: 'SeRemoteShutdownPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Generate security audits' => { name: 'SeAuditPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-20', }, 'Impersonate a client after authentication' => { name: 'SeImpersonatePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-20,*S-1-5-32-544,*S-1-5-6', }, 'Increase a process working set' => { name: 'SeIncreaseWorkingSetPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-545', }, 'Increase scheduling priority' => { name: 'SeIncreaseBasePriorityPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Load and unload device drivers' => { name: 'SeLoadDriverPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Lock pages in memory' => { name: 'SeLockMemoryPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Log on as a batch job' => { name: 'SeBatchLogonRight', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-32-551,*S-1-5-32-559', }, 'Log on as a service' => { name: 'SeServiceLogonRight', policy_type: 'Privilege Rights', policy_default: '*S-1-5-80-0', }, 'Manage auditing and security log' => { name: 'SeSecurityPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Modify an object label' => { name: 'SeRelabelPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Modify firmware environment values' => { name: 'SeSystemEnvironmentPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Perform volume maintenance tasks' => { name: 'SeManageVolumePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Profile single process' => { name: 'SeProfileSingleProcessPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Profile system performance' => { name: 'SeSystemProfilePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-80-3139157870-2983391045-3678747466-658725712-1809340420', }, 'Remove computer from docking station' => { name: 'SeUndockPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, 'Replace a process level token' => { name: 'SeAssignPrimaryTokenPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-19,*S-1-5-20', }, 'Restore files and directories' => { name: 'SeRestorePrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-32-551', }, 'Shut down the system' => { name: 'SeShutdownPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544,*S-1-5-32-551', }, 'Synchronize directory service data' => { name: 'SeSyncAgentPrivilege', policy_type: 'Privilege Rights', policy_default: '', }, 'Take ownership of files or other objects' => { name: 'SeTakeOwnershipPrivilege', policy_type: 'Privilege Rights', policy_default: '*S-1-5-32-544', }, # Security Options 'Accounts: Administrator account status' => { name: 'EnableAdminAccount', policy_type: 'System Access', data_type: :boolean, policy_default: 'enabled', }, 'Accounts: Block Microsoft accounts' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\NoConnectedUser', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'This policy is disabled', '1' => 'Users can`t add Microsoft accounts', '3' => 'Users can`t add or log on with Microsoft accounts', }, }, 'Accounts: Guest account status' => { name: 'EnableGuestAccount', policy_type: 'System Access', data_type: :boolean, policy_default: 'disabled', }, 'Accounts: Limit local account use of blank passwords to console logon only' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\LimitBlankPasswordUse', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Accounts: Rename administrator account' => { name: 'NewAdministratorName', policy_type: 'System Access', data_type: :string, policy_default: 'Administrator', }, 'Accounts: Rename guest account' => { name: 'NewGuestName', policy_type: 'System Access', data_type: :string, policy_default: 'Guest', }, 'Audit: Audit the access of global system objects' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\AuditBaseObjects', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Audit: Audit the use of Backup and Restore privilege' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\FullPrivilegeAuditing', reg_type: '3', policy_type: 'Registry Values', data_type: :boolean, }, 'Audit: Force audit policy subcategory settings (Windows Vista or later) to override audit policy category settings' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\SCENoApplyLegacyAuditPolicy', policy_type: 'Registry Values', reg_type: '4', data_type: :boolean, }, 'Audit: Shut down system immediately if unable to log security audits' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\CrashOnAuditFail', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'DCOM: Machine Access Restrictions in Security Descriptor Definition Language (SDDL) syntax' => { name: 'MACHINE\Software\Policies\Microsoft\Windows NT\DCOM\MachineAccessRestriction', reg_type: '1', policy_type: 'Registry Values', data_type: :string, }, 'DCOM: Machine Launch Restrictions in Security Descriptor Definition Language (SDDL) syntax' => { name: 'MACHINE\Software\Policies\Microsoft\Windows NT\DCOM\MachineLaunchRestriction', reg_type: '1', policy_type: 'Registry Values', data_type: :string, }, 'Devices: Allow undock without having to log on' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\UndockWithoutLogon', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Devices: Allowed to format and eject removable media' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\AllocateDASD', reg_type: '1', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Administrators', '1' => 'Administrators and Power Users', '2' => 'Administrators and Interactive Users', }, }, 'Devices: Prevent users from installing printer drivers' => { name: 'MACHINE\System\CurrentControlSet\Control\Print\Providers\LanMan Print Services\Servers\AddPrinterDrivers', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Devices: Restrict CD-ROM access to locally logged-on user only' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\AllocateCDRoms', reg_type: '1', policy_type: 'Registry Values', data_type: :boolean, }, 'Devices: Restrict floppy access to locally logged-on user only' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\AllocateFloppies', reg_type: '1', policy_type: 'Registry Values', data_type: :boolean, }, 'Domain member: Digitally encrypt or sign secure channel data (always)' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\RequireSignOrSeal', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Domain member: Digitally encrypt secure channel data (when possible)' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\SealSecureChannel', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Domain member: Digitally sign secure channel data (when possible)' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\SignSecureChannel', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Domain member: Disable machine account password changes' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\DisablePasswordChange', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Domain member: Maximum machine account password age' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\MaximumPasswordAge', reg_type: '4', policy_type: 'Registry Values', data_type: :integer, }, 'Domain member: Require strong (Windows 2000 or later) session key' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\RequireStrongKey', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Interactive logon: Display user information when the session is locked' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\DontDisplayLockedUserId', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '1' => 'User display name, domain and user names', '2' => 'User display name only', '3' => 'Do not display user information', }, }, 'Interactive logon: Do not display last user name' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\DontDisplayLastUserName', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Interactive logon: Do not require CTRL+ALT+DEL' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableCAD', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Interactive logon: Message title for users attempting to log on' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\LegalNoticeCaption', reg_type: '1', policy_type: 'Registry Values', data_type: :string, }, 'Interactive logon: Message text for users attempting to log on' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\LegalNoticeText', reg_type: '7', policy_type: 'Registry Values', data_type: :string, }, 'Interactive logon: Number of previous logons to cache (in case domain controller is not available)' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\CachedLogonsCount', reg_type: '1', policy_type: 'Registry Values', data_type: :integer, }, 'Interactive logon: Prompt user to change password before expiration' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\PasswordExpiryWarning', reg_type: '4', policy_type: 'Registry Values', data_type: :integer, }, 'Interactive logon: Require Domain Controller authentication to unlock workstation' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\ForceUnlockLogon', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Interactive logon: Require smart card' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\ScForceOption', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Interactive logon: Smart card removal behavior' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\ScRemoveOption', reg_type: '1', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'No Action', '1' => 'Lock Workstation', '2' => 'Force Logoff', '3' => 'Disconnect if a Remote Desktop Services session', }, }, 'Interactive logon: Machine inactivity limit' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\InactivityTimeoutSecs', reg_type: '4', policy_type: 'Registry Values', data_type: :integer, }, 'Interactive logon: Machine account lockout threshold' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\MaxDevicePasswordFailedAttempts', reg_type: '4', policy_type: 'Registry Values', data_type: :integer, }, 'Microsoft network client: Digitally sign communications (always)' => { name: 'MACHINE\System\CurrentControlSet\Services\LanmanWorkstation\Parameters\RequireSecuritySignature', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Microsoft network client: Digitally sign communications (if server agrees)' => { name: 'MACHINE\System\CurrentControlSet\Services\LanmanWorkstation\Parameters\EnableSecuritySignature', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Microsoft network client: Send unencrypted password to third-party SMB servers' => { name: 'MACHINE\System\CurrentControlSet\Services\LanmanWorkstation\Parameters\EnablePlainTextPassword', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Microsoft network server: Amount of idle time required before suspending session' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\AutoDisconnect', reg_type: '4', policy_type: 'Registry Values', data_type: :integer, }, 'Microsoft network server: Digitally sign communications (always)' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\RequireSecuritySignature', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Microsoft network server: Digitally sign communications (if client agrees)' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\EnableSecuritySignature', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Microsoft network server: Disconnect clients when logon hours expire' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\EnableForcedLogOff', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Microsoft network server: Server SPN target name validation level' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\SmbServerNameHardeningLevel', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Off', '1' => 'Accept if provided by client', '2' => 'Required from client', }, }, 'Network access: Allow anonymous SID/name translation' => { name: 'LSAAnonymousNameLookup', policy_type: 'System Access', data_type: :boolean, }, 'Network access: Do not allow anonymous enumeration of SAM accounts' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\RestrictAnonymousSAM', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network access: Do not allow anonymous enumeration of SAM accounts and shares' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\RestrictAnonymous', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network access: Do not allow storage of passwords and credentials for network authentication' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\DisableDomainCreds', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network access: Let Everyone permissions apply to anonymous users' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\EveryoneIncludesAnonymous', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network access: Named Pipes that can be accessed anonymously' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\NullSessionPipes', reg_type: '7', policy_type: 'Registry Values', data_type: :string, }, 'Network access: Remotely accessible registry paths' => { name: 'MACHINE\System\CurrentControlSet\Control\SecurePipeServers\Winreg\AllowedExactPaths\Machine', reg_type: '7', policy_type: 'Registry Values', data_type: :string, }, 'Network access: Remotely accessible registry paths and sub-paths' => { name: 'MACHINE\System\CurrentControlSet\Control\SecurePipeServers\Winreg\AllowedPaths\Machine', reg_type: '7', policy_type: 'Registry Values', data_type: :string, }, 'Network access: Restrict anonymous access to Named Pipes and Shares' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\RestrictNullSessAccess', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network access: Restrict clients allowed to make remote calls to SAM' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\RestrictRemoteSAM', reg_type: '1', policy_type: 'Registry Values', data_type: :string, }, 'Network access: Shares that can be accessed anonymously' => { name: 'MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\NullSessionShares', reg_type: '7', policy_type: 'Registry Values', data_type: :string, }, 'Network access: Sharing and security model for local accounts' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\ForceGuest', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Classic - local users authenticate as themselves', '1' => 'Guest only - local users authenticate as Guest', }, }, 'Network security: Allow Local System to use computer identity for NTLM' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\UseMachineId', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network security: Allow LocalSystem NULL session fallback' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\MSV1_0\allownullsessionfallback', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network Security: Allow PKU2U authentication requests to this computer to use online identities' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\pku2u\AllowOnlineID', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network security: Configure encryption types allowed for Kerberos' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\Kerberos\Parameters\SupportedEncryptionTypes', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '1 ' => 'DES_CBC_CRC', '2 ' => 'DES_CBC_MB5', '3 ' => 'DES_CBC_CRC,DES_CBC_MB5,', '4 ' => 'RC4_HMAC_MD5', '5 ' => 'DES_CBC_CRC,RC4_HMAC_MD5,', '6 ' => 'DES_CBC_MB5,RC4_HMAC_MD5,', '7 ' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,', '8 ' => 'AES128_HMAC_SHA1', '9 ' => 'DES_CBC_CRC,AES128_HMAC_SHA1,', '10' => 'DES_CBC_MB5,AES128_HMAC_SHA1,', '11' => 'DES_CBC_CRC,DES_CBC_MB5,AES128_HMAC_SHA1,', '12' => 'RC4_HMAC_MD5,AES128_HMAC_SHA1,', '13' => 'DES_CBC_CRC,RC4_HMAC_MD5,AES128_HMAC_SHA1,', '14' => 'DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,', '15' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,', '16' => 'AES256_HMAC_SHA1', '17' => 'DES_CBC_CRC,AES256_HMAC_SHA1,', '18' => 'DES_CBC_MB5,AES256_HMAC_SHA1,', '19' => 'DES_CBC_CRC,DES_CBC_MB5,AES256_HMAC_SHA1,', '20' => 'RC4_HMAC_MD5,AES256_HMAC_SHA1,', '21' => 'DES_CBC_CRC,RC4_HMAC_MD5,AES256_HMAC_SHA1,', '22' => 'DES_CBC_MB5,RC4_HMAC_MD5,AES256_HMAC_SHA1,', '23' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,AES256_HMAC_SHA1,', '24' => 'AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '25' => 'DES_CBC_CRC,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '26' => 'DES_CBC_MB5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '27' => 'DES_CBC_CRC,DES_CBC_MB5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '28' => 'RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '29' => 'DES_CBC_CRC,RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '30' => 'DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '31' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,', '2147483616' => 'Future encryption types', '2147483617' => 'DES_CBC_CRC,Future encryption types', '2147483618' => 'DES_CBC_MB5,Future encryption types', '2147483619' => 'DES_CBC_CRC,DES_CBC_MB5,Future encryption types', '2147483620' => 'RC4_HMAC_MD5,Future encryption types', '2147483621' => 'DES_CBC_CRC,RC4_HMAC_MD5,Future encryption types', '2147483622' => 'DES_CBC_MB5,RC4_HMAC_MD5,Future encryption types', '2147483623' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,Future encryption types', '2147483624' => 'AES128_HMAC_SHA1,Future encryption types', '2147483625' => 'DES_CBC_CRC,AES128_HMAC_SHA1,Future encryption types', '2147483626' => 'DES_CBC_MB5,AES128_HMAC_SHA1,Future encryption types', '2147483627' => 'DES_CBC_CRC,DES_CBC_MB5,AES128_HMAC_SHA1,Future encryption types', '2147483628' => 'RC4_HMAC_MD5,AES128_HMAC_SHA1,Future encryption types', '2147483629' => 'DES_CBC_CRC,RC4_HMAC_MD5,AES128_HMAC_SHA1,Future encryption types', '2147483630' => 'DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,Future encryption types', '2147483631' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,Future encryption types', '2147483632' => 'AES256_HMAC_SHA1,Future encryption types', '2147483633' => 'DES_CBC_CRC,AES256_HMAC_SHA1,Future encryption types', '2147483634' => 'DES_CBC_MB5,AES256_HMAC_SHA1,Future encryption types', '2147483635' => 'DES_CBC_CRC,DES_CBC_MB5,AES256_HMAC_SHA1,Future encryption types', '2147483636' => 'RC4_HMAC_MD5,AES256_HMAC_SHA1,Future encryption types', '2147483637' => 'DES_CBC_CRC,RC4_HMAC_MD5,AES256_HMAC_SHA1,Future encryption types', '2147483638' => 'DES_CBC_MB5,RC4_HMAC_MD5,AES256_HMAC_SHA1,Future encryption types', '2147483639' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,AES256_HMAC_SHA1,Future encryption types', '2147483640' => 'AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483641' => 'DES_CBC_CRC,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483642' => 'DES_CBC_MB5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483643' => 'DES_CBC_CRC,DES_CBC_MB5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483644' => 'RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483645' => 'DES_CBC_CRC,RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483646' => 'DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', '2147483647' => 'DES_CBC_CRC,DES_CBC_MB5,RC4_HMAC_MD5,AES128_HMAC_SHA1,AES256_HMAC_SHA1,Future encryption types', }, }, 'Network security: Do not store LAN Manager hash value on next password change' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\NoLMHash', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Network security: Force logoff when logon hours expire' => { name: 'ForceLogoffWhenHourExpire', policy_type: 'System Access', data_type: :boolean, policy_default: 'disabled', }, 'Network security: LAN Manager authentication level' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\LmCompatibilityLevel', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Send LM & NTLM responses', '1' => 'Send LM & NTLM - use NTLMv2 session security if negotiated', '2' => 'Send NTLM response only', '3' => 'Send NTLMv2 response only', '4' => 'Send NTLMv2 response only. Refuse LM', '5' => 'Send NTLMv2 response only. Refuse LM & NTLM', }, }, 'Network security: LDAP client signing requirements' => { name: 'MACHINE\System\CurrentControlSet\Services\LDAP\LDAPClientIntegrity', policy_type: 'Registry Values', reg_type: '4', data_type: :multi_select, policy_options: { '0' => 'None', '1' => 'Negotiate signing', '2' => 'Require signing', }, }, 'Network security: Minimum session security for NTLM SSP based (including secure RPC) clients' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\MSV1_0\NTLMMinClientSec', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '524288' => 'Require NTLMv2 session security', '536870912' => 'Require 128-bit encryption', '537395200' => 'Require NTLMv2 session security,Require 128-bit encryption', }, }, 'Network security: Minimum session security for NTLM SSP based (including secure RPC) servers' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\MSV1_0\NTLMMinServerSec', policy_type: 'Registry Values', reg_type: '4', data_type: :multi_select, policy_options: { '524288' => 'Require NTLMv2 session security', '536870912' => 'Require 128-bit encryption', '537395200' => 'Require NTLMv2 session security,Require 128-bit encryption', }, }, 'Recovery console: Allow automatic administrative logon' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole\SecurityLevel', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Recovery console: Allow floppy copy and access to all drives and all folders' => { name: 'MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole\SetCommand', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Shutdown: Allow system to be shut down without having to log on' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\ShutdownWithoutLogon', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'Shutdown: Clear virtual memory pagefile' => { name: 'MACHINE\System\CurrentControlSet\Control\Session Manager\Memory Management\ClearPageFileAtShutdown', policy_type: 'Registry Values', reg_type: '4', data_type: :boolean, }, 'System cryptography: Force strong key protection for user keys stored on the computer' => { name: 'MACHINE\Software\Policies\Microsoft\Cryptography\ForceKeyProtection', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'User input is not required when new keys are stored and used', '1' => 'User is prompted when the key is first used', '2' => 'User must enter a password each time they use a key', }, }, 'System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\FIPSAlgorithmPolicy\Enabled', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'System objects: Require case insensitivity for non-Windows subsystems' => { name: 'MACHINE\System\CurrentControlSet\Control\Session Manager\Kernel\ObCaseInsensitive', policy_type: 'Registry Values', reg_type: '4', data_type: :boolean, policy_default: 'enabled', }, 'System objects: Strengthen default permissions of internal system objects (e.g. Symbolic Links)' => { name: 'MACHINE\System\CurrentControlSet\Control\Session Manager\ProtectionMode', policy_type: 'Registry Values', reg_type: '4', data_type: :boolean, }, 'System settings: Optional subsystems' => { name: 'MACHINE\System\CurrentControlSet\Control\Session Manager\SubSystems\optional', policy_type: 'Registry Values', reg_type: '7', data_type: :string, }, 'System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies' => { name: 'MACHINE\Software\Policies\Microsoft\Windows\Safer\CodeIdentifiers\AuthenticodeEnabled', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Admin Approval Mode for the Built-in Administrator account' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\FilterAdministratorToken', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Allow UIAccess applications to prompt for elevation without using the secure desktop' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableUIADesktopToggle', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\ConsentPromptBehaviorAdmin', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Elevate without prompting', '1' => 'Prompt for credentials on the secure desktop', '2' => 'Prompt for consent on the secure desktop', '3' => 'Prompt for credentials', '4' => 'Prompt for consent', '5' => 'Prompt for consent for non-Windows binaries', }, }, 'User Account Control: Behavior of the elevation prompt for standard users' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\ConsentPromptBehaviorUser', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Automatically deny elevation requests', '1' => 'Prompt for credentials on the secure desktop', '3' => 'Prompt for credentials', }, }, 'User Account Control: Detect application installations and prompt for elevation' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableInstallerDetection', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Only elevate executable files that are signed and validated' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\ValidateAdminCodeSignatures', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Only elevate UIAccess applications that are installed in secure locations' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableSecureUIAPaths', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Run all administrators in Admin Approval Mode' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableLUA', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Switch to the secure desktop when prompting for elevation' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\PromptOnSecureDesktop', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, 'User Account Control: Virtualize file and registry write failures to per-user locations' => { name: 'MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableVirtualization', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, }, # Setting is ignored: https://msdn.microsoft.com/en-us/library/cc232772.aspx 'Accounts: Require Login to Change Password' => { name: 'RequireLogonToChangePassword', policy_type: 'System Access', data_type: :boolean, policy_default: 'disabled', }, # Settings for Domain Controlers 'Domain controller: Allow server operators to schedule tasks' => { name: 'MACHINE\System\CurrentControlSet\Control\Lsa\SubmitControl', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, policy_default: 'disabled', }, # Settings for Domain Controllers 'Domain controller: LDAP server channel binding token requirements' => { name: 'MACHINE\System\CurrentControlSet\Services\NTDS\Parameters\LdapEnforceChannelBinding', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '0' => 'Never', '1' => 'When supported', '2' => 'Always', }, }, 'Domain controller: LDAP server signing requirements' => { name: 'MACHINE\System\CurrentControlSet\Services\NTDS\Parameters\LDAPServerIntegrity', reg_type: '4', policy_type: 'Registry Values', data_type: :multi_select, policy_options: { '1' => 'none', '2' => 'Require signing', }, }, 'Domain controller: Refuse machine account password changes' => { name: 'MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters\RefusePasswordChange', reg_type: '4', policy_type: 'Registry Values', data_type: :boolean, policy_default: 'disabled', }, } end |
.user_to_sid(value) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 13 def self.user_to_sid(value) name = Puppet::Util::Windows::SID.name_to_sid(value) return value unless name "*#{name}" end |
.valid_lsp?(name) ⇒ Boolean
99 100 101 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 99 def self.valid_lsp?(name) lsp_mapping.keys.include?(name) end |
.validate_policy_value(resource_hash, value) ⇒ Object
validates the policy value
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 125 def self.validate_policy_value(resource_hash, value) SecurityPolicy.new # I would rather not have to look this info up, but the type code will not always have this info handy # without knowing the policy type we can't figure out what to convert policy_hash = find_mapping_from_policy_desc(resource_hash[:name]) case policy_hash[:policy_type] when 'Event Audit' unless SecurityPolicy::EVENT_TYPES.include?(value) raise ArgumentError, "Invalid policy value: '#{value}' for '#{resource_hash[:name]}', should be one of '#{SecurityPolicy::EVENT_TYPES.join(', ')}'" end when 'System Access', 'Registry Values' case policy_hash[:data_type] when :boolean unless SecurityPolicy::STATE_TYPES.include?(value) raise ArgumentError, "Invalid policy value: '#{value}' for '#{resource_hash[:name]}', should be one of '#{SecurityPolicy::STATE_TYPES.join(', ')}'" end when :multi_select unless policy_hash[:policy_options].values.include?(value) raise ArgumentError, "Invalid policy value: '#{value}' for '#{resource_hash[:name]}', should be one of '#{policy_hash[:policy_options].values.join(', ')}'" end end end end |
Instance Method Details
#convert_privilege_right(ensure_value, policy_value) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/puppet_x/lsp/security_policy.rb', line 20 def convert_privilege_right(ensure_value, policy_value) # we need to convert users to sids first if ensure_value.to_s == 'absent' pv = '' else sids = [] policy_value.split(',').sort.each do |suser| suser.strip! sids << SecurityPolicy.user_to_sid(suser) end pv = sids.sort.join(',') end pv end |