diff --git a/data/module_source/credentials/Invoke-Kerberoast.ps1 b/data/module_source/credentials/Invoke-Kerberoast.ps1 index fa524fc..d4c1ff4 100644 --- a/data/module_source/credentials/Invoke-Kerberoast.ps1 +++ b/data/module_source/credentials/Invoke-Kerberoast.ps1 @@ -588,7 +588,11 @@ Outputs a custom object containing the SamAccountName, ServicePrincipalName, and } $Out | Add-Member Noteproperty 'Hash' $HashFormat $Out.PSObject.TypeNames.Insert(0, 'PowerView.SPNTicket') - Write-Output $Out + #Prints the PS Object + #Write-Output $Out + + #Prints just the hashes + Write-Output $HashFormat } } } @@ -1077,4 +1081,4 @@ Outputs a custom object containing the SamAccountName, ServicePrincipalName, and Invoke-RevertToSelf -TokenHandle $LogonToken } } -} \ No newline at end of file +}