From 0652dd6cd4380652856a44010a17b4ca9cccf3dc Mon Sep 17 00:00:00 2001 From: Evangelos Mitakidis Date: Wed, 3 Jul 2019 15:48:35 +0200 Subject: [PATCH] Corrected SharpHound process name The Process Name is SharpHound and not SharpHound.exe. --- Invoke-ACLPwn.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Invoke-ACLPwn.ps1 b/Invoke-ACLPwn.ps1 index a57e9ab..3e79687 100644 --- a/Invoke-ACLPwn.ps1 +++ b/Invoke-ACLPwn.ps1 @@ -1433,7 +1433,7 @@ function Get-SharpHoundACL ([string]$sharpHoundLocation, $isNewVersion) { do { # check if sharphound is still running - $p = Get-Process '*SharpHound.exe' + $p = Get-Process '*SharpHound' if ($p -eq $null) { $stillRuns = $false } else {