Skip to content

Commit

Permalink
async
Browse files Browse the repository at this point in the history
  • Loading branch information
byehack authored Nov 15, 2023
1 parent 0addda1 commit aad9fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypykatz/alsadecryptor/lsa_template_nt6.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def get_template(sysinfo):
elif sysinfo.buildnumber < WindowsBuild.WIN_10_1809.value:
template = templates['nt6']['x64']['5']

elif WindowsBuild.WIN_10_1809.value <= sysinfo.buildnumber < WindowsMinBuild.WIN_11.value:
elif WindowsBuild.WIN_10_1809.value <= sysinfo.buildnumber <= WindowsMinBuild.WIN_11.value:
template = templates['nt6']['x64']['6']
else:
template = templates['nt6']['x64']['8']
Expand Down Expand Up @@ -544,4 +544,4 @@ def __init__(self):
'7' : LSA_x86_7(),
}
}
}
}

0 comments on commit aad9fb1

Please sign in to comment.