Skip to content

Commit

Permalink
Fix indent issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackndo committed Oct 27, 2022
1 parent 9ddd1fc commit 2b9f21f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lsassy/dumpmethod/edrsandblast.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def __init__(self, session, timeout, time_between_commands):

def prepare(self, options):
if os.name == 'nt':
tmp_dir = 'C:\\Windows\\Temp\\'
else:
tmp_dir = '/tmp/'
tmp_dir = 'C:\\Windows\\Temp\\'
else:
tmp_dir = '/tmp/'
with open('{}{}'.format(tmp_dir, self.tmp_ntoskrnl), 'wb') as p:
try:
self._session.smb_session.getFile("C$", "\\Windows\\System32\\ntoskrnl.exe", p.write)
Expand Down

0 comments on commit 2b9f21f

Please sign in to comment.