77 lines
2.7 KiB
PowerShell
77 lines
2.7 KiB
PowerShell
|
|
[Report] @{
|
|
Title = "Windows Server 2012 Audit Report"
|
|
ModuleName = "ATAPAuditor"
|
|
BasedOn = @(
|
|
"CIS Microsoft Windows Server 2012 R2 Benchmark, Version: 3.0.0, Date: 2023-10-20",
|
|
"DISA Microsoft Windows Server 2012 R2 Benchmark, Version: V2R19, Date: 2020-07-17",
|
|
"FB Pro recommendations 'Ciphers Protocols and Hashes Benchmark', Version 1.2.1, Date: 2023-11-03"
|
|
"FB Pro recommendations 'Enhanced settings', Version 1.2.1, Date: 2023-11-03"
|
|
)
|
|
Sections = @(
|
|
[ReportSection] @{
|
|
Title = "CIS Benchmarks"
|
|
Description = "This section contains all CIS recommendations"
|
|
SubSections = @(
|
|
[ReportSection] @{
|
|
Title = "Registry Settings/Group Policies"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-CIS-3.0.0#RegistrySettings"
|
|
}
|
|
[ReportSection] @{
|
|
Title = "User Rights Assignment"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-CIS-3.0.0#UserRights"
|
|
}
|
|
[ReportSection] @{
|
|
Title = "Account Policies"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-CIS-3.0.0#AccountPolicies"
|
|
}
|
|
[ReportSection] @{
|
|
Title = "Advanced Audit Policy Configuration"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-CIS-3.0.0#AuditPolicies"
|
|
}
|
|
[ReportSection] @{
|
|
Title = "Security Options"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-CIS-3.0.0#SecurityOptions"
|
|
}
|
|
)
|
|
}
|
|
|
|
[ReportSection] @{
|
|
Title = "DISA Benchmarks"
|
|
Description = "This section contains all DISA recommendations"
|
|
SubSections = @(
|
|
[ReportSection] @{
|
|
Title = "Registry Settings/Group Policies"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-DISA-V2R19#RegistrySettings"
|
|
}
|
|
[ReportSection] @{
|
|
Title = "Account Policies"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-DISA-V2R19#AccountPolicies"
|
|
}
|
|
[ReportSection] @{
|
|
Title = "Advanced Audit Policy Configuration"
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Server 2012 R2-DISA-V2R19#AuditPolicies"
|
|
}
|
|
)
|
|
}
|
|
[ReportSection] @{
|
|
Title = 'FB Pro recommendations'
|
|
Description = "This section contains all FB Pro recommendations"
|
|
SubSections = @(
|
|
[ReportSection] @{
|
|
Title = 'Ciphers Suites and Hashes'
|
|
AuditInfos = Test-AuditGroup "CiphersProtocolsHashesBenchmark-FBPro-1.2.1#RegistrySettings"
|
|
}
|
|
[ReportSection] @{
|
|
Title = 'Enhanced security settings - Registry Settings'
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Enhanced Security Settings-FB Pro GmbH-1.2.1#RegistrySettings"
|
|
}
|
|
[ReportSection] @{
|
|
Title = 'Enhanced security settings - User Rights'
|
|
AuditInfos = Test-AuditGroup "Microsoft Windows Enhanced Security Settings-FB Pro GmbH-1.2.1#UserRights"
|
|
}
|
|
)
|
|
}
|
|
)
|
|
}
|