From 705bd42b41790256c8e85361baf0f9b5f919dbc6 Mon Sep 17 00:00:00 2001 From: Peter Marszalik Date: Sat, 22 Nov 2014 14:48:44 -0600 Subject: [PATCH] tab to space change - line 296 --- data/exploits/powershell/powerdump.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/exploits/powershell/powerdump.ps1 b/data/exploits/powershell/powerdump.ps1 index f9e6a78f66..06fcc62f89 100755 --- a/data/exploits/powershell/powerdump.ps1 +++ b/data/exploits/powershell/powerdump.ps1 @@ -293,7 +293,7 @@ function Get-UserHashes($u, [byte[]]$hbootkey) $enc_lm_hash = $u.V[$($lm_hash_offset)..$($lm_hash_offset+0x0f)]; $enc_nt_hash = $u.V[$($nt_hash_offset)..$($nt_hash_offset+0x0f)]; } - elseif ($NT_exists -eq $true) + elseif ($NT_exists -eq $true) { $nt_hash_offset = $u.HashOffset + 8; $enc_nt_hash = [byte[]]$u.V[$($nt_hash_offset)..$($nt_hash_offset+0x0f)];