diff options
Diffstat (limited to 'Recon')
-rwxr-xr-x | Recon/PowerView.ps1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Recon/PowerView.ps1 b/Recon/PowerView.ps1 index b50c647..17d5b9e 100755 --- a/Recon/PowerView.ps1 +++ b/Recon/PowerView.ps1 @@ -4453,7 +4453,7 @@ Switch. Return user accounts that are marked as 'sensitive and not allowed for d Switch. Return computer objects that are trusted to authenticate for other principals. -.PARAMETER KerberosPreuthNotRequired +.PARAMETER KerberosPreauthNotRequired Switch. Return user accounts with "Do not require Kerberos preauthentication" set. @@ -4611,7 +4611,7 @@ The raw DirectoryServices.SearchResult object, if -Raw is enabled. $TrustedToAuth, [Switch] - $KerberosPreuthNotRequired, + $KerberosPreauthNotRequired, [ValidateNotNullOrEmpty()] [String] @@ -4742,7 +4742,7 @@ The raw DirectoryServices.SearchResult object, if -Raw is enabled. Write-Verbose '[Get-DomainUser] Searching for users that are trusted to authenticate for other principals' $Filter += '(msds-allowedtodelegateto=*)' } - if ($PSBoundParameters['KerberosPreuthNotRequired']) { + if ($PSBoundParameters['KerberosPreauthNotRequireduthNotRequired']) { Write-Verbose '[Get-DomainUser] Searching for user accounts that do not require kerberos preauthenticate' $Filter += '(userAccountControl:1.2.840.113556.1.4.803:=4194304)' } |