Skip to content

Commit

Permalink
Merge pull request #201 from brokenvhs/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehildreth authored Dec 26, 2024
2 parents e6d41ec + 9ba56e6 commit 8ae10e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Private/Invoke-Scans.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ function Invoke-Scans {
}
ESC13 {
Write-Host 'Identifying AD CS templates with dangerous ESC13 configurations...'
[array]$ESC11 = Find-ESC13 -ADCSObjects $ADCSObjects -SafeUsers $SafeUsers -ClientAuthEKUs $ClientAuthEKUs
[array]$ESC13 = Find-ESC13 -ADCSObjects $ADCSObjects -SafeUsers $SafeUsers -ClientAuthEKUs $ClientAuthEKUs
}
ESC15 {
Write-Host 'Identifying AD CS templates with dangerous ESC15/EKUwu configurations...'
[array]$ESC11 = Find-ESC15 -ADCSObjects $ADCSObjects -SafeUsers $SafeUsers
[array]$ESC15 = Find-ESC15 -ADCSObjects $ADCSObjects -SafeUsers $SafeUsers
}
EKUwu {
Write-Host 'Identifying AD CS templates with dangerous ESC15/EKUwu configurations...'
[array]$ESC11 = Find-ESC15 -ADCSObjects $ADCSObjects -SafeUsers $SafeUsers
[array]$ESC15 = Find-ESC15 -ADCSObjects $ADCSObjects -SafeUsers $SafeUsers
}
All {
Write-Host 'Identifying auditing issues...'
Expand Down

0 comments on commit 8ae10e5

Please sign in to comment.