tab to space change - line 296

bug/bundler_fix
Peter Marszalik 2014-11-22 14:48:44 -06:00
parent 900aa9cd6b
commit 705bd42b41
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ function Get-UserHashes($u, [byte[]]$hbootkey)
$enc_lm_hash = $u.V[$($lm_hash_offset)..$($lm_hash_offset+0x0f)]; $enc_lm_hash = $u.V[$($lm_hash_offset)..$($lm_hash_offset+0x0f)];
$enc_nt_hash = $u.V[$($nt_hash_offset)..$($nt_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; $nt_hash_offset = $u.HashOffset + 8;
$enc_nt_hash = [byte[]]$u.V[$($nt_hash_offset)..$($nt_hash_offset+0x0f)]; $enc_nt_hash = [byte[]]$u.V[$($nt_hash_offset)..$($nt_hash_offset+0x0f)];