diff options
author | Kevin Robertson <Kevin-Robertson@users.noreply.github.com> | 2019-02-26 09:30:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-26 09:30:14 -0500 |
commit | 9167ebfbaa3313e2e44d10ce99bee24256e13b94 (patch) | |
tree | 111189b0329a21d5f850d439a46230a39368db17 | |
parent | 14dbf8aca26eaaa807fcfaa21e94047294186485 (diff) | |
download | Inveigh-9167ebfbaa3313e2e44d10ce99bee24256e13b94.tar.gz Inveigh-9167ebfbaa3313e2e44d10ce99bee24256e13b94.zip |
Update Inveigh.ps1
-rw-r--r-- | Inveigh.ps1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Inveigh.ps1 b/Inveigh.ps1 index 903602f..d37082e 100644 --- a/Inveigh.ps1 +++ b/Inveigh.ps1 @@ -435,7 +435,7 @@ param [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTP = "Y", [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTPS = "N", [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTPSForceCertDelete = "N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$Kerberos = "Y", + [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$Kerberos = "N", [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$LLMNR = "Y", [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$LogOutput = "Y", [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$MachineAccounts = "N", @@ -557,7 +557,7 @@ if($HTTPDefaultFile -or $HTTPDefaultEXE) } -if($Kerberos -and !$KerberosCredential -and !$KerberosHash) +if($Kerberos -eq 'Y' -and !$KerberosCredential -and !$KerberosHash) { Write-Output "[-] You must specify a -KerberosCredential or -KerberosHash when enabling Kerberos capture" throw @@ -6875,4 +6875,4 @@ function ConvertTo-Inveigh } -#endregion
\ No newline at end of file +#endregion |