├── LICENSE ├── README.md ├── data ├── agent │ ├── agent.ps1 │ ├── agent.py │ └── stagers │ │ ├── dropbox.ps1 │ │ ├── dropbox.py │ │ ├── http.ps1 │ │ ├── http.py │ │ ├── http_com.ps1 │ │ └── http_mapi.ps1 ├── misc │ ├── ReflectivePick_x64_orig.dll │ ├── ReflectivePick_x86_orig.dll │ ├── Run.java │ ├── apptemplateResources │ │ ├── empty │ │ │ └── macho │ │ ├── icon │ │ │ └── stormtrooper.icns │ │ ├── x64 │ │ │ └── launcher.app │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── launcher │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ └── Base.lproj │ │ │ │ │ └── MainMenu.nib │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── x86 │ │ │ └── launcher.app │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── launcher │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ └── Base.lproj │ │ │ │ └── MainMenu.nib │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── hijackers │ │ ├── template.dylib │ │ └── template64.dylib │ ├── hop.php │ ├── inactive_modules │ │ └── redirector.py │ ├── machotemplate │ ├── pkgbuild │ │ ├── expand │ │ │ └── PackageInfo │ │ ├── root │ │ │ └── Applications │ │ │ │ └── test │ │ └── scripts │ │ │ └── postinstall │ ├── python_modules │ │ └── mss.zip │ ├── templateLauncher.dylib │ ├── templateLauncher64.dylib │ ├── templateSource │ │ ├── Dylib.c │ │ └── macho.m │ └── xar-1.5.2.tar.gz ├── module_source │ ├── code_execution │ │ ├── Execute-Url-Script.ps1 │ │ ├── Invoke-DllInjection.ps1 │ │ ├── Invoke-MetasploitPayload.ps1 │ │ ├── Invoke-Ntsd.ps1 │ │ ├── Invoke-ReflectivePEInjection.ps1 │ │ ├── Invoke-Shellcode.ps1 │ │ ├── Invoke-ShellcodeMSIL.ps1 │ │ ├── ntsd_x64.exe │ │ ├── ntsd_x86.exe │ │ ├── ntsdexts_x64.dll │ │ └── ntsdexts_x86.dll │ ├── collection │ │ ├── Get-BrowserData.ps1 │ │ ├── Get-ChromeDump.ps1 │ │ ├── Get-ClipboardContents.ps1 │ │ ├── Get-FoxDump.ps1 │ │ ├── Get-IndexedItem.ps1 │ │ ├── Get-Keystrokes.ps1 │ │ ├── Get-SQLColumnSampleData.ps1 │ │ ├── Get-SQLQuery.ps1 │ │ ├── Get-Screenshot.ps1 │ │ ├── Get-USBKeystrokes.ps1 │ │ ├── Invoke-Inveigh.ps1 │ │ ├── Invoke-NetRipper.ps1 │ │ ├── Invoke-NinjaCopy.ps1 │ │ ├── Out-Minidump.ps1 │ │ └── vaults │ │ │ ├── KeePassConfig.ps1 │ │ │ └── KeeThief.ps1 │ ├── credentials │ │ ├── Get-VaultCredential.ps1 │ │ ├── Invoke-CredentialInjection.ps1 │ │ ├── Invoke-DCSync.ps1 │ │ ├── Invoke-Kerberoast.ps1 │ │ ├── Invoke-Mimikatz.ps1 │ │ ├── Invoke-Mimikittenz.ps1 │ │ ├── Invoke-PowerDump.ps1 │ │ ├── Invoke-SessionGopher.ps1 │ │ ├── Invoke-TokenManipulation.ps1 │ │ ├── binder4-system.ps1 │ │ └── dumpCredStore.ps1 │ ├── exfil │ │ ├── Invoke-EgressCheck.ps1 │ │ ├── Invoke-ExfilDataToGitHub.ps1 │ │ └── Invoke-PostExfil.ps1 │ ├── exploitation │ │ ├── Exploit-EternalBlue.ps1 │ │ ├── Exploit-JBoss.ps1 │ │ └── Exploit-Jenkins.ps1 │ ├── fun │ │ ├── Invoke-Thunderstruck.ps1 │ │ ├── Invoke-VoiceTroll.ps1 │ │ └── Set-Wallpaper.ps1 │ ├── lateral_movement │ │ ├── Invoke-DCOM.ps1 │ │ ├── Invoke-ExecuteMSBuild.ps1 │ │ ├── Invoke-InveighRelay.ps1 │ │ ├── Invoke-PsExec.ps1 │ │ ├── Invoke-SQLOSCmd.ps1 │ │ └── Invoke-SSHCommand.ps1 │ ├── management │ │ ├── Invoke-PSInject.ps1 │ │ ├── Invoke-Phant0m.ps1 │ │ ├── Invoke-ReflectivePEInjection.ps1 │ │ ├── Invoke-RunAs.ps1 │ │ ├── Invoke-Vnc.ps1 │ │ ├── MailRaider.ps1 │ │ ├── New-HoneyHash.ps1 │ │ ├── Set-MacAttribute.ps1 │ │ └── powercat.ps1 │ ├── persistence │ │ ├── Get-SecurityPackages.ps1 │ │ ├── Install-SSP.ps1 │ │ ├── Invoke-BackdoorLNK.ps1 │ │ ├── Persistence.psm1 │ │ └── PowerBreach.ps1 │ ├── privesc │ │ ├── Get-GPPPassword.ps1 │ │ ├── Get-SiteListPassword.ps1 │ │ ├── Get-System.ps1 │ │ ├── Invoke-BypassUAC.ps1 │ │ ├── Invoke-BypassUACTokenManipulation.ps1 │ │ ├── Invoke-EnvBypass.ps1 │ │ ├── Invoke-EventVwrBypass.ps1 │ │ ├── Invoke-FodHelperBypass.ps1 │ │ ├── Invoke-MS16032.ps1 │ │ ├── Invoke-MS16135.ps1 │ │ ├── Invoke-SDCLTBypass.ps1 │ │ ├── Invoke-Tater.ps1 │ │ ├── Invoke-WScriptBypassUAC.ps1 │ │ ├── PowerUp.ps1 │ │ └── Sherlock.ps1 │ ├── python │ │ └── lateral_movement │ │ │ └── socks_source.py │ ├── recon │ │ ├── Find-Fruit.ps1 │ │ ├── Get-SQLServerLoginDefaultPw.ps1 │ │ └── HTTP-Login.ps1 │ ├── situational_awareness │ │ ├── host │ │ │ ├── Find-TrustedDocuments.ps1 │ │ │ ├── Get-ComputerDetails.ps1 │ │ │ ├── Get-SystemDNSServer.ps1 │ │ │ ├── Invoke-Paranoia.ps1 │ │ │ ├── Invoke-WinEnum.ps1 │ │ │ └── Start-MonitorTCPConnections.ps1 │ │ └── network │ │ │ ├── BloodHound.ps1 │ │ │ ├── Get-SPN.ps1 │ │ │ ├── Get-SQLInstanceDomain.ps1 │ │ │ ├── Get-SQLServerInfo.ps1 │ │ │ ├── Invoke-ARPScan.ps1 │ │ │ ├── Invoke-Portscan.ps1 │ │ │ ├── Invoke-ReverseDNSLookup.ps1 │ │ │ ├── Invoke-SMBAutoBrute.ps1 │ │ │ ├── Invoke-SmbScanner.ps1 │ │ │ └── powerview.ps1 │ └── trollsploit │ │ └── Get-RickAstley.ps1 ├── obfuscated_module_source │ ├── code_execution │ │ └── .gitignore │ ├── collection │ │ ├── .gitignore │ │ └── vaults │ │ │ └── .gitignore │ ├── credentials │ │ └── .gitignore │ ├── exfil │ │ └── .gitignore │ ├── exploitation │ │ └── .gitignore │ ├── fun │ │ └── .gitignore │ ├── lateral_movement │ │ └── .gitignore │ ├── management │ │ └── .gitignore │ ├── persistence │ │ └── .gitignore │ ├── privesc │ │ └── .gitignore │ ├── recon │ │ └── .gitignore │ ├── situational_awareness │ │ ├── .gitignore │ │ ├── host │ │ │ └── .gitignore │ │ └── network │ │ │ └── .gitignore │ └── trollsploit │ │ └── .gitignore └── profiles │ ├── comfoo.txt │ ├── fiesta.txt │ ├── pitty_tiger.txt │ └── zeus.txt ├── empire ├── icmpsh ├── lib ├── __init__.py ├── common │ ├── __init__.py │ ├── agents.py │ ├── credentials.py │ ├── empire.py │ ├── encryption.py │ ├── helpers.py │ ├── http.py │ ├── listeners.py │ ├── messages.py │ ├── modules.py │ ├── packets.py │ ├── pylnk.py │ └── stagers.py ├── listeners │ ├── dbx.py │ ├── http.py │ ├── http_com.py │ ├── http_foreign.py │ ├── http_hop.py │ ├── http_mapi.py │ ├── meterpreter.py │ └── template.py ├── modules │ ├── exfiltration │ │ └── Invoke_ExfilDataToGitHub.py │ ├── external │ │ └── generate_agent.py │ ├── powershell │ │ ├── code_execution │ │ │ ├── execute-url-script.py │ │ │ ├── invoke_dllinjection.py │ │ │ ├── invoke_metasploitpayload.py │ │ │ ├── invoke_ntsd.py │ │ │ ├── invoke_reflectivepeinjection.py │ │ │ ├── invoke_shellcode.py │ │ │ └── invoke_shellcodemsil.py │ │ ├── collection │ │ │ ├── ChromeDump.py │ │ │ ├── FoxDump.py │ │ │ ├── USBKeylogger.py │ │ │ ├── WebcamRecorder.py │ │ │ ├── browser_data.py │ │ │ ├── clipboard_monitor.py │ │ │ ├── file_finder.py │ │ │ ├── find_interesting_file.py │ │ │ ├── get_indexed_item.py │ │ │ ├── get_sql_column_sample_data.py │ │ │ ├── get_sql_query.py │ │ │ ├── inveigh.py │ │ │ ├── keylogger.py │ │ │ ├── minidump.py │ │ │ ├── netripper.py │ │ │ ├── ninjacopy.py │ │ │ ├── packet_capture.py │ │ │ ├── prompt.py │ │ │ ├── screenshot.py │ │ │ └── vaults │ │ │ │ ├── add_keepass_config_trigger.py │ │ │ │ ├── find_keepass_config.py │ │ │ │ ├── get_keepass_config_trigger.py │ │ │ │ ├── keethief.py │ │ │ │ └── remove_keepass_config_trigger.py │ │ ├── credentials │ │ │ ├── credential_injection.py │ │ │ ├── enum_cred_store.py │ │ │ ├── invoke_kerberoast.py │ │ │ ├── mimikatz │ │ │ │ ├── cache.py │ │ │ │ ├── certs.py │ │ │ │ ├── command.py │ │ │ │ ├── dcsync.py │ │ │ │ ├── dcsync_hashdump.py │ │ │ │ ├── extract_tickets.py │ │ │ │ ├── golden_ticket.py │ │ │ │ ├── logonpasswords.py │ │ │ │ ├── lsadump.py │ │ │ │ ├── mimitokens.py │ │ │ │ ├── pth.py │ │ │ │ ├── purge.py │ │ │ │ ├── sam.py │ │ │ │ ├── silver_ticket.py │ │ │ │ └── trust_keys.py │ │ │ ├── mimikittenz.py │ │ │ ├── powerdump.py │ │ │ ├── sessiongopher.py │ │ │ ├── tokens.py │ │ │ └── vault_credential.py │ │ ├── exfiltration │ │ │ ├── egresscheck.py │ │ │ └── exfil_dropbox.py │ │ ├── exploitation │ │ │ ├── exploit_eternalblue.py │ │ │ ├── exploit_jboss.py │ │ │ └── exploit_jenkins.py │ │ ├── lateral_movement │ │ │ ├── inveigh_relay.py │ │ │ ├── invoke_dcom.py │ │ │ ├── invoke_executemsbuild.py │ │ │ ├── invoke_psexec.py │ │ │ ├── invoke_psremoting.py │ │ │ ├── invoke_sqloscmd.py │ │ │ ├── invoke_sshcommand.py │ │ │ ├── invoke_wmi.py │ │ │ ├── invoke_wmi_debugger.py │ │ │ ├── jenkins_script_console.py │ │ │ └── new_gpo_immediate_task.py │ │ ├── management │ │ │ ├── disable_rdp.py │ │ │ ├── downgrade_account.py │ │ │ ├── enable_multi_rdp.py │ │ │ ├── enable_rdp.py │ │ │ ├── get_domain_sid.py │ │ │ ├── honeyhash.py │ │ │ ├── invoke-phant0m.py │ │ │ ├── invoke_script.py │ │ │ ├── lock.py │ │ │ ├── logoff.py │ │ │ ├── mailraider │ │ │ │ ├── disable_security.py │ │ │ │ ├── get_emailitems.py │ │ │ │ ├── get_subfolders.py │ │ │ │ ├── mail_search.py │ │ │ │ ├── search_gal.py │ │ │ │ ├── send_mail.py │ │ │ │ └── view_email.py │ │ │ ├── powercat.py │ │ │ ├── psinject.py │ │ │ ├── reflective_inject.py │ │ │ ├── restart.py │ │ │ ├── runas.py │ │ │ ├── sid_to_user.py │ │ │ ├── spawn.py │ │ │ ├── spawnas.py │ │ │ ├── switch_listener.py │ │ │ ├── timestomp.py │ │ │ ├── user_to_sid.py │ │ │ ├── vnc.py │ │ │ ├── wdigest_downgrade.py │ │ │ └── zipfolder.py │ │ ├── persistence │ │ │ ├── elevated │ │ │ │ ├── registry.py │ │ │ │ ├── schtasks.py │ │ │ │ ├── wmi.py │ │ │ │ └── wmi_updater.py │ │ │ ├── misc │ │ │ │ ├── add_netuser.py │ │ │ │ ├── add_sid_history.py │ │ │ │ ├── debugger.py │ │ │ │ ├── disable_machine_acct_change.py │ │ │ │ ├── get_ssps.py │ │ │ │ ├── install_ssp.py │ │ │ │ ├── memssp.py │ │ │ │ └── skeleton_key.py │ │ │ ├── powerbreach │ │ │ │ ├── deaduser.py │ │ │ │ ├── eventlog.py │ │ │ │ └── resolver.py │ │ │ └── userland │ │ │ │ ├── backdoor_lnk.py │ │ │ │ ├── registry.py │ │ │ │ └── schtasks.py │ │ ├── privesc │ │ │ ├── ask.py │ │ │ ├── binder4-system.py │ │ │ ├── bypassuac.py │ │ │ ├── bypassuac_env.py │ │ │ ├── bypassuac_eventvwr.py │ │ │ ├── bypassuac_fodhelper.py │ │ │ ├── bypassuac_sdctlbypass.py │ │ │ ├── bypassuac_tokenmanipulation.py │ │ │ ├── bypassuac_wscript.py │ │ │ ├── getsystem.py │ │ │ ├── gpp.py │ │ │ ├── mcafee_sitelist.py │ │ │ ├── ms16-032.py │ │ │ ├── ms16-135.py │ │ │ ├── powerup │ │ │ │ ├── allchecks.py │ │ │ │ ├── find_dllhijack.py │ │ │ │ ├── service_exe_restore.py │ │ │ │ ├── service_exe_stager.py │ │ │ │ ├── service_exe_useradd.py │ │ │ │ ├── service_stager.py │ │ │ │ ├── service_useradd.py │ │ │ │ └── write_dllhijacker.py │ │ │ ├── sherlock.py │ │ │ └── tater.py │ │ ├── recon │ │ │ ├── find_fruit.py │ │ │ ├── get_sql_server_login_default_pw.py │ │ │ └── http_login.py │ │ ├── situational_awareness │ │ │ ├── host │ │ │ │ ├── antivirusproduct.py │ │ │ │ ├── computerdetails.py │ │ │ │ ├── dnsserver.py │ │ │ │ ├── findtrusteddocuments.py │ │ │ │ ├── get_pathacl.py │ │ │ │ ├── get_proxy.py │ │ │ │ ├── get_uaclevel.py │ │ │ │ ├── monitortcpconnections.py │ │ │ │ ├── paranoia.py │ │ │ │ └── winenum.py │ │ │ └── network │ │ │ │ ├── arpscan.py │ │ │ │ ├── bloodhound.py │ │ │ │ ├── get_exploitable_system.py │ │ │ │ ├── get_spn.py │ │ │ │ ├── get_sql_instance_domain.py │ │ │ │ ├── get_sql_server_info.py │ │ │ │ ├── portscan.py │ │ │ │ ├── powerview │ │ │ │ ├── find_computer_field.py │ │ │ │ ├── find_foreign_group.py │ │ │ │ ├── find_foreign_user.py │ │ │ │ ├── find_gpo_computer_admin.py │ │ │ │ ├── find_gpo_location.py │ │ │ │ ├── find_localadmin_access.py │ │ │ │ ├── find_managed_security_group.py │ │ │ │ ├── find_user_field.py │ │ │ │ ├── get_cached_rdpconnection.py │ │ │ │ ├── get_computer.py │ │ │ │ ├── get_dfs_share.py │ │ │ │ ├── get_domain_controller.py │ │ │ │ ├── get_domain_policy.py │ │ │ │ ├── get_domain_trust.py │ │ │ │ ├── get_fileserver.py │ │ │ │ ├── get_forest.py │ │ │ │ ├── get_forest_domain.py │ │ │ │ ├── get_gpo.py │ │ │ │ ├── get_gpo_computer.py │ │ │ │ ├── get_group.py │ │ │ │ ├── get_group_member.py │ │ │ │ ├── get_localgroup.py │ │ │ │ ├── get_loggedon.py │ │ │ │ ├── get_object_acl.py │ │ │ │ ├── get_ou.py │ │ │ │ ├── get_rdp_session.py │ │ │ │ ├── get_session.py │ │ │ │ ├── get_site.py │ │ │ │ ├── get_subnet.py │ │ │ │ ├── get_user.py │ │ │ │ ├── map_domain_trust.py │ │ │ │ ├── process_hunter.py │ │ │ │ ├── set_ad_object.py │ │ │ │ ├── share_finder.py │ │ │ │ └── user_hunter.py │ │ │ │ ├── reverse_dns.py │ │ │ │ ├── smbautobrute.py │ │ │ │ └── smbscanner.py │ │ └── trollsploit │ │ │ ├── get_schwifty.py │ │ │ ├── message.py │ │ │ ├── process_killer.py │ │ │ ├── rick_ascii.py │ │ │ ├── rick_astley.py │ │ │ ├── thunderstruck.py │ │ │ ├── voicetroll.py │ │ │ ├── wallpaper.py │ │ │ └── wlmdr.py │ ├── powershell_template.py │ ├── python │ │ ├── collection │ │ │ ├── linux │ │ │ │ ├── hashdump.py │ │ │ │ ├── keylogger.py │ │ │ │ ├── mimipenguin.py │ │ │ │ ├── pillage_user.py │ │ │ │ ├── sniffer.py │ │ │ │ └── xkeylogger.py │ │ │ └── osx │ │ │ │ ├── browser_dump.py │ │ │ │ ├── clipboard.py │ │ │ │ ├── hashdump.py │ │ │ │ ├── imessage_dump.py │ │ │ │ ├── kerberosdump.py │ │ │ │ ├── keychaindump.py │ │ │ │ ├── keychaindump_chainbreaker.py │ │ │ │ ├── keylogger.py │ │ │ │ ├── native_screenshot.py │ │ │ │ ├── native_screenshot_mss.py │ │ │ │ ├── pillage_user.py │ │ │ │ ├── prompt.py │ │ │ │ ├── screensaver_alleyoop.py │ │ │ │ ├── screenshot.py │ │ │ │ ├── search_email.py │ │ │ │ ├── sniffer.py │ │ │ │ └── webcam.py │ │ ├── exploit │ │ │ └── web │ │ │ │ └── jboss_jmx.py │ │ ├── lateral_movement │ │ │ └── multi │ │ │ │ ├── ssh_command.py │ │ │ │ └── ssh_launcher.py │ │ ├── management │ │ │ ├── multi │ │ │ │ ├── kerberos_inject.py │ │ │ │ ├── socks.py │ │ │ │ └── spawn.py │ │ │ └── osx │ │ │ │ ├── ls_m.py │ │ │ │ ├── screen_sharing.py │ │ │ │ └── shellcodeinject64.py │ │ ├── persistence │ │ │ ├── multi │ │ │ │ └── crontab.py │ │ │ └── osx │ │ │ │ ├── CreateHijacker.py │ │ │ │ ├── RemoveDaemon.py │ │ │ │ ├── launchdaemonexecutable.py │ │ │ │ ├── loginhook.py │ │ │ │ └── mail.py │ │ ├── privesc │ │ │ ├── linux │ │ │ │ ├── linux_priv_checker.py │ │ │ │ └── unix_privesc_check.py │ │ │ ├── multi │ │ │ │ ├── bashdoor.py │ │ │ │ └── sudo_spawn.py │ │ │ ├── osx │ │ │ │ ├── dyld_print_to_file.py │ │ │ │ └── piggyback.py │ │ │ └── windows │ │ │ │ └── get_gpppasswords.py │ │ ├── situational_awareness │ │ │ ├── host │ │ │ │ ├── multi │ │ │ │ │ ├── SuidGuidSearch.py │ │ │ │ │ └── WorldWriteableFileSearch.py │ │ │ │ └── osx │ │ │ │ │ ├── HijackScanner.py │ │ │ │ │ └── situational_awareness.py │ │ │ └── network │ │ │ │ ├── active_directory │ │ │ │ ├── dscl_get_groupmembers.py │ │ │ │ ├── dscl_get_groups.py │ │ │ │ ├── dscl_get_users.py │ │ │ │ ├── get_computers.py │ │ │ │ ├── get_domaincontrollers.py │ │ │ │ ├── get_fileservers.py │ │ │ │ ├── get_groupmembers.py │ │ │ │ ├── get_groupmemberships.py │ │ │ │ ├── get_groups.py │ │ │ │ ├── get_ous.py │ │ │ │ ├── get_userinformation.py │ │ │ │ └── get_users.py │ │ │ │ ├── dcos │ │ │ │ ├── chronos_api_add_job.py │ │ │ │ ├── chronos_api_delete_job.py │ │ │ │ ├── chronos_api_start_job.py │ │ │ │ ├── etcd_crawler.py │ │ │ │ ├── marathon_api_create_start_app.py │ │ │ │ └── marathon_api_delete_app.py │ │ │ │ ├── find_fruit.py │ │ │ │ ├── gethostbyname.py │ │ │ │ ├── http_rest_api.py │ │ │ │ ├── port_scan.py │ │ │ │ └── smb_mount.py │ │ └── trollsploit │ │ │ └── osx │ │ │ ├── change_background.py │ │ │ ├── login_message.py │ │ │ ├── say.py │ │ │ └── thunderstruck.py │ ├── python_jobs_template.py │ └── python_template.py ├── powershell │ └── Invoke-Obfuscation │ │ ├── Invoke-Obfuscation.ps1 │ │ ├── Invoke-Obfuscation.psd1 │ │ ├── Invoke-Obfuscation.psm1 │ │ ├── LICENSE │ │ ├── Out-EncodedAsciiCommand.ps1 │ │ ├── Out-EncodedBXORCommand.ps1 │ │ ├── Out-EncodedBinaryCommand.ps1 │ │ ├── Out-EncodedHexCommand.ps1 │ │ ├── Out-EncodedOctalCommand.ps1 │ │ ├── Out-ObfuscatedStringCommand.ps1 │ │ ├── Out-ObfuscatedTokenCommand.ps1 │ │ ├── Out-PowerShellLauncher.ps1 │ │ ├── Out-SecureStringCommand.ps1 │ │ └── README.md └── stagers │ ├── multi │ ├── bash.py │ ├── launcher.py │ ├── pyinstaller.py │ └── war.py │ ├── osx │ ├── applescript.py │ ├── application.py │ ├── ducky.py │ ├── dylib.py │ ├── jar.py │ ├── launcher.py │ ├── macho.py │ ├── macro.py │ ├── pkg.py │ ├── safari_launcher.py │ └── teensy.py │ └── windows │ ├── aspx.py │ ├── bunny.py │ ├── dll.py │ ├── ducky.py │ ├── hta.py │ ├── launcher_bat.py │ ├── launcher_lnk.py │ ├── launcher_sct.py │ ├── launcher_vbs.py │ ├── macro.py │ ├── macroless_msword.py │ ├── ms16-051.py │ ├── php.py │ ├── starfighters_js.py │ ├── starfighters_js.pyc │ ├── starfighters_js_sct.py │ ├── starfighters_vbs.py │ ├── starfighters_vbs.pyc │ ├── starfighters_xsl.py │ └── teensy.py └── setup ├── cert.sh ├── install.sh ├── reset.sh └── setup_database.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/README.md -------------------------------------------------------------------------------- /data/agent/agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/agent.ps1 -------------------------------------------------------------------------------- /data/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/agent.py -------------------------------------------------------------------------------- /data/agent/stagers/dropbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/stagers/dropbox.ps1 -------------------------------------------------------------------------------- /data/agent/stagers/dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/stagers/dropbox.py -------------------------------------------------------------------------------- /data/agent/stagers/http.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/stagers/http.ps1 -------------------------------------------------------------------------------- /data/agent/stagers/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/stagers/http.py -------------------------------------------------------------------------------- /data/agent/stagers/http_com.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/stagers/http_com.ps1 -------------------------------------------------------------------------------- /data/agent/stagers/http_mapi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/agent/stagers/http_mapi.ps1 -------------------------------------------------------------------------------- /data/misc/ReflectivePick_x64_orig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/ReflectivePick_x64_orig.dll -------------------------------------------------------------------------------- /data/misc/ReflectivePick_x86_orig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/ReflectivePick_x86_orig.dll -------------------------------------------------------------------------------- /data/misc/Run.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/Run.java -------------------------------------------------------------------------------- /data/misc/apptemplateResources/empty/macho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/empty/macho -------------------------------------------------------------------------------- /data/misc/apptemplateResources/icon/stormtrooper.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/icon/stormtrooper.icns -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x64/launcher.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x64/launcher.app/Contents/Info.plist -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x64/launcher.app/Contents/MacOS/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x64/launcher.app/Contents/MacOS/launcher -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x64/launcher.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x64/launcher.app/Contents/Resources/Base.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x64/launcher.app/Contents/Resources/Base.lproj/MainMenu.nib -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x64/launcher.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x64/launcher.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x86/launcher.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x86/launcher.app/Contents/Info.plist -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x86/launcher.app/Contents/MacOS/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x86/launcher.app/Contents/MacOS/launcher -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x86/launcher.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x86/launcher.app/Contents/Resources/Base.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x86/launcher.app/Contents/Resources/Base.lproj/MainMenu.nib -------------------------------------------------------------------------------- /data/misc/apptemplateResources/x86/launcher.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/apptemplateResources/x86/launcher.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /data/misc/hijackers/template.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/hijackers/template.dylib -------------------------------------------------------------------------------- /data/misc/hijackers/template64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/hijackers/template64.dylib -------------------------------------------------------------------------------- /data/misc/hop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/hop.php -------------------------------------------------------------------------------- /data/misc/inactive_modules/redirector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/inactive_modules/redirector.py -------------------------------------------------------------------------------- /data/misc/machotemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/machotemplate -------------------------------------------------------------------------------- /data/misc/pkgbuild/expand/PackageInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/pkgbuild/expand/PackageInfo -------------------------------------------------------------------------------- /data/misc/pkgbuild/root/Applications/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/misc/pkgbuild/scripts/postinstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | LAUNCHER 4 | 5 | exit 0 -------------------------------------------------------------------------------- /data/misc/python_modules/mss.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/python_modules/mss.zip -------------------------------------------------------------------------------- /data/misc/templateLauncher.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/templateLauncher.dylib -------------------------------------------------------------------------------- /data/misc/templateLauncher64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/templateLauncher64.dylib -------------------------------------------------------------------------------- /data/misc/templateSource/Dylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/templateSource/Dylib.c -------------------------------------------------------------------------------- /data/misc/templateSource/macho.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/templateSource/macho.m -------------------------------------------------------------------------------- /data/misc/xar-1.5.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/misc/xar-1.5.2.tar.gz -------------------------------------------------------------------------------- /data/module_source/code_execution/Execute-Url-Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Execute-Url-Script.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/Invoke-DllInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Invoke-DllInjection.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/Invoke-MetasploitPayload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Invoke-MetasploitPayload.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/Invoke-Ntsd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Invoke-Ntsd.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/Invoke-ReflectivePEInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Invoke-ReflectivePEInjection.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/Invoke-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Invoke-Shellcode.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/Invoke-ShellcodeMSIL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/Invoke-ShellcodeMSIL.ps1 -------------------------------------------------------------------------------- /data/module_source/code_execution/ntsd_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/ntsd_x64.exe -------------------------------------------------------------------------------- /data/module_source/code_execution/ntsd_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/ntsd_x86.exe -------------------------------------------------------------------------------- /data/module_source/code_execution/ntsdexts_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/ntsdexts_x64.dll -------------------------------------------------------------------------------- /data/module_source/code_execution/ntsdexts_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/code_execution/ntsdexts_x86.dll -------------------------------------------------------------------------------- /data/module_source/collection/Get-BrowserData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-BrowserData.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-ChromeDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-ChromeDump.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-ClipboardContents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-ClipboardContents.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-FoxDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-FoxDump.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-IndexedItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-IndexedItem.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-Keystrokes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-Keystrokes.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-SQLColumnSampleData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-SQLColumnSampleData.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-SQLQuery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-SQLQuery.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-Screenshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-Screenshot.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Get-USBKeystrokes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Get-USBKeystrokes.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Invoke-Inveigh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Invoke-Inveigh.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Invoke-NetRipper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Invoke-NetRipper.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Invoke-NinjaCopy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Invoke-NinjaCopy.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/Out-Minidump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/Out-Minidump.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/vaults/KeePassConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/vaults/KeePassConfig.ps1 -------------------------------------------------------------------------------- /data/module_source/collection/vaults/KeeThief.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/collection/vaults/KeeThief.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Get-VaultCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Get-VaultCredential.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-CredentialInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-CredentialInjection.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-DCSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-DCSync.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-Kerberoast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-Kerberoast.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-Mimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-Mimikatz.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-Mimikittenz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-Mimikittenz.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-PowerDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-PowerDump.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-SessionGopher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-SessionGopher.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/Invoke-TokenManipulation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/Invoke-TokenManipulation.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/binder4-system.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/binder4-system.ps1 -------------------------------------------------------------------------------- /data/module_source/credentials/dumpCredStore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/credentials/dumpCredStore.ps1 -------------------------------------------------------------------------------- /data/module_source/exfil/Invoke-EgressCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/exfil/Invoke-EgressCheck.ps1 -------------------------------------------------------------------------------- /data/module_source/exfil/Invoke-ExfilDataToGitHub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/exfil/Invoke-ExfilDataToGitHub.ps1 -------------------------------------------------------------------------------- /data/module_source/exfil/Invoke-PostExfil.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/exfil/Invoke-PostExfil.ps1 -------------------------------------------------------------------------------- /data/module_source/exploitation/Exploit-EternalBlue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/exploitation/Exploit-EternalBlue.ps1 -------------------------------------------------------------------------------- /data/module_source/exploitation/Exploit-JBoss.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/exploitation/Exploit-JBoss.ps1 -------------------------------------------------------------------------------- /data/module_source/exploitation/Exploit-Jenkins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/exploitation/Exploit-Jenkins.ps1 -------------------------------------------------------------------------------- /data/module_source/fun/Invoke-Thunderstruck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/fun/Invoke-Thunderstruck.ps1 -------------------------------------------------------------------------------- /data/module_source/fun/Invoke-VoiceTroll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/fun/Invoke-VoiceTroll.ps1 -------------------------------------------------------------------------------- /data/module_source/fun/Set-Wallpaper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/fun/Set-Wallpaper.ps1 -------------------------------------------------------------------------------- /data/module_source/lateral_movement/Invoke-DCOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/lateral_movement/Invoke-DCOM.ps1 -------------------------------------------------------------------------------- /data/module_source/lateral_movement/Invoke-ExecuteMSBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/lateral_movement/Invoke-ExecuteMSBuild.ps1 -------------------------------------------------------------------------------- /data/module_source/lateral_movement/Invoke-InveighRelay.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/lateral_movement/Invoke-InveighRelay.ps1 -------------------------------------------------------------------------------- /data/module_source/lateral_movement/Invoke-PsExec.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/lateral_movement/Invoke-PsExec.ps1 -------------------------------------------------------------------------------- /data/module_source/lateral_movement/Invoke-SQLOSCmd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/lateral_movement/Invoke-SQLOSCmd.ps1 -------------------------------------------------------------------------------- /data/module_source/lateral_movement/Invoke-SSHCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/lateral_movement/Invoke-SSHCommand.ps1 -------------------------------------------------------------------------------- /data/module_source/management/Invoke-PSInject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/Invoke-PSInject.ps1 -------------------------------------------------------------------------------- /data/module_source/management/Invoke-Phant0m.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/Invoke-Phant0m.ps1 -------------------------------------------------------------------------------- /data/module_source/management/Invoke-ReflectivePEInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/Invoke-ReflectivePEInjection.ps1 -------------------------------------------------------------------------------- /data/module_source/management/Invoke-RunAs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/Invoke-RunAs.ps1 -------------------------------------------------------------------------------- /data/module_source/management/Invoke-Vnc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/Invoke-Vnc.ps1 -------------------------------------------------------------------------------- /data/module_source/management/MailRaider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/MailRaider.ps1 -------------------------------------------------------------------------------- /data/module_source/management/New-HoneyHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/New-HoneyHash.ps1 -------------------------------------------------------------------------------- /data/module_source/management/Set-MacAttribute.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/Set-MacAttribute.ps1 -------------------------------------------------------------------------------- /data/module_source/management/powercat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/management/powercat.ps1 -------------------------------------------------------------------------------- /data/module_source/persistence/Get-SecurityPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/persistence/Get-SecurityPackages.ps1 -------------------------------------------------------------------------------- /data/module_source/persistence/Install-SSP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/persistence/Install-SSP.ps1 -------------------------------------------------------------------------------- /data/module_source/persistence/Invoke-BackdoorLNK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/persistence/Invoke-BackdoorLNK.ps1 -------------------------------------------------------------------------------- /data/module_source/persistence/Persistence.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/persistence/Persistence.psm1 -------------------------------------------------------------------------------- /data/module_source/persistence/PowerBreach.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/persistence/PowerBreach.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Get-GPPPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Get-GPPPassword.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Get-SiteListPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Get-SiteListPassword.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Get-System.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Get-System.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-BypassUAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-BypassUAC.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-BypassUACTokenManipulation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-BypassUACTokenManipulation.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-EnvBypass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-EnvBypass.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-EventVwrBypass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-EventVwrBypass.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-FodHelperBypass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-FodHelperBypass.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-MS16032.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-MS16032.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-MS16135.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-MS16135.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-SDCLTBypass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-SDCLTBypass.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-Tater.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-Tater.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Invoke-WScriptBypassUAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Invoke-WScriptBypassUAC.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/PowerUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/PowerUp.ps1 -------------------------------------------------------------------------------- /data/module_source/privesc/Sherlock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/privesc/Sherlock.ps1 -------------------------------------------------------------------------------- /data/module_source/python/lateral_movement/socks_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/python/lateral_movement/socks_source.py -------------------------------------------------------------------------------- /data/module_source/recon/Find-Fruit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/recon/Find-Fruit.ps1 -------------------------------------------------------------------------------- /data/module_source/recon/Get-SQLServerLoginDefaultPw.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/recon/Get-SQLServerLoginDefaultPw.ps1 -------------------------------------------------------------------------------- /data/module_source/recon/HTTP-Login.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/recon/HTTP-Login.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/host/Find-TrustedDocuments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/host/Find-TrustedDocuments.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/host/Get-ComputerDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/host/Get-ComputerDetails.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/host/Get-SystemDNSServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/host/Get-SystemDNSServer.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/host/Invoke-Paranoia.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/host/Invoke-Paranoia.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/host/Invoke-WinEnum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/host/Invoke-WinEnum.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/host/Start-MonitorTCPConnections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/host/Start-MonitorTCPConnections.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/BloodHound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/BloodHound.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Get-SPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Get-SPN.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Get-SQLInstanceDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Get-SQLInstanceDomain.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Get-SQLServerInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Get-SQLServerInfo.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Invoke-ARPScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Invoke-ARPScan.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Invoke-Portscan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Invoke-Portscan.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Invoke-ReverseDNSLookup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Invoke-ReverseDNSLookup.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Invoke-SMBAutoBrute.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Invoke-SMBAutoBrute.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/Invoke-SmbScanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/Invoke-SmbScanner.ps1 -------------------------------------------------------------------------------- /data/module_source/situational_awareness/network/powerview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/situational_awareness/network/powerview.ps1 -------------------------------------------------------------------------------- /data/module_source/trollsploit/Get-RickAstley.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/module_source/trollsploit/Get-RickAstley.ps1 -------------------------------------------------------------------------------- /data/obfuscated_module_source/code_execution/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/collection/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/collection/vaults/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/credentials/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/exfil/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/exploitation/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/fun/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/lateral_movement/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/management/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/persistence/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/privesc/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/recon/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/situational_awareness/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/situational_awareness/host/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/situational_awareness/network/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/obfuscated_module_source/trollsploit/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | -------------------------------------------------------------------------------- /data/profiles/comfoo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/profiles/comfoo.txt -------------------------------------------------------------------------------- /data/profiles/fiesta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/profiles/fiesta.txt -------------------------------------------------------------------------------- /data/profiles/pitty_tiger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/profiles/pitty_tiger.txt -------------------------------------------------------------------------------- /data/profiles/zeus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/data/profiles/zeus.txt -------------------------------------------------------------------------------- /empire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/empire -------------------------------------------------------------------------------- /icmpsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/icmpsh -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/common/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/agents.py -------------------------------------------------------------------------------- /lib/common/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/credentials.py -------------------------------------------------------------------------------- /lib/common/empire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/empire.py -------------------------------------------------------------------------------- /lib/common/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/encryption.py -------------------------------------------------------------------------------- /lib/common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/helpers.py -------------------------------------------------------------------------------- /lib/common/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/http.py -------------------------------------------------------------------------------- /lib/common/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/listeners.py -------------------------------------------------------------------------------- /lib/common/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/messages.py -------------------------------------------------------------------------------- /lib/common/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/modules.py -------------------------------------------------------------------------------- /lib/common/packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/packets.py -------------------------------------------------------------------------------- /lib/common/pylnk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/pylnk.py -------------------------------------------------------------------------------- /lib/common/stagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/common/stagers.py -------------------------------------------------------------------------------- /lib/listeners/dbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/dbx.py -------------------------------------------------------------------------------- /lib/listeners/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/http.py -------------------------------------------------------------------------------- /lib/listeners/http_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/http_com.py -------------------------------------------------------------------------------- /lib/listeners/http_foreign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/http_foreign.py -------------------------------------------------------------------------------- /lib/listeners/http_hop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/http_hop.py -------------------------------------------------------------------------------- /lib/listeners/http_mapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/http_mapi.py -------------------------------------------------------------------------------- /lib/listeners/meterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/meterpreter.py -------------------------------------------------------------------------------- /lib/listeners/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/listeners/template.py -------------------------------------------------------------------------------- /lib/modules/exfiltration/Invoke_ExfilDataToGitHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/exfiltration/Invoke_ExfilDataToGitHub.py -------------------------------------------------------------------------------- /lib/modules/external/generate_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/external/generate_agent.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/execute-url-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/execute-url-script.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/invoke_dllinjection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/invoke_dllinjection.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/invoke_metasploitpayload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/invoke_metasploitpayload.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/invoke_ntsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/invoke_ntsd.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/invoke_reflectivepeinjection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/invoke_reflectivepeinjection.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/invoke_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/invoke_shellcode.py -------------------------------------------------------------------------------- /lib/modules/powershell/code_execution/invoke_shellcodemsil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/code_execution/invoke_shellcodemsil.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/ChromeDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/ChromeDump.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/FoxDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/FoxDump.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/USBKeylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/USBKeylogger.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/WebcamRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/WebcamRecorder.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/browser_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/browser_data.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/clipboard_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/clipboard_monitor.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/file_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/file_finder.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/find_interesting_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/find_interesting_file.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/get_indexed_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/get_indexed_item.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/get_sql_column_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/get_sql_column_sample_data.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/get_sql_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/get_sql_query.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/inveigh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/inveigh.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/keylogger.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/minidump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/minidump.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/netripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/netripper.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/ninjacopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/ninjacopy.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/packet_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/packet_capture.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/prompt.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/screenshot.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/vaults/add_keepass_config_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/vaults/add_keepass_config_trigger.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/vaults/find_keepass_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/vaults/find_keepass_config.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/vaults/get_keepass_config_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/vaults/get_keepass_config_trigger.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/vaults/keethief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/vaults/keethief.py -------------------------------------------------------------------------------- /lib/modules/powershell/collection/vaults/remove_keepass_config_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/collection/vaults/remove_keepass_config_trigger.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/credential_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/credential_injection.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/enum_cred_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/enum_cred_store.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/invoke_kerberoast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/invoke_kerberoast.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/cache.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/certs.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/command.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/dcsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/dcsync.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/dcsync_hashdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/dcsync_hashdump.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/extract_tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/extract_tickets.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/golden_ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/golden_ticket.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/logonpasswords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/logonpasswords.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/lsadump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/lsadump.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/mimitokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/mimitokens.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/pth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/pth.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/purge.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/sam.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/silver_ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/silver_ticket.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikatz/trust_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikatz/trust_keys.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/mimikittenz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/mimikittenz.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/powerdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/powerdump.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/sessiongopher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/sessiongopher.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/tokens.py -------------------------------------------------------------------------------- /lib/modules/powershell/credentials/vault_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/credentials/vault_credential.py -------------------------------------------------------------------------------- /lib/modules/powershell/exfiltration/egresscheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/exfiltration/egresscheck.py -------------------------------------------------------------------------------- /lib/modules/powershell/exfiltration/exfil_dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/exfiltration/exfil_dropbox.py -------------------------------------------------------------------------------- /lib/modules/powershell/exploitation/exploit_eternalblue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/exploitation/exploit_eternalblue.py -------------------------------------------------------------------------------- /lib/modules/powershell/exploitation/exploit_jboss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/exploitation/exploit_jboss.py -------------------------------------------------------------------------------- /lib/modules/powershell/exploitation/exploit_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/exploitation/exploit_jenkins.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/inveigh_relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/inveigh_relay.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_dcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_dcom.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_executemsbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_executemsbuild.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_psexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_psexec.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_psremoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_psremoting.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_sqloscmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_sqloscmd.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_sshcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_sshcommand.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_wmi.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/invoke_wmi_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/invoke_wmi_debugger.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/jenkins_script_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/jenkins_script_console.py -------------------------------------------------------------------------------- /lib/modules/powershell/lateral_movement/new_gpo_immediate_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/lateral_movement/new_gpo_immediate_task.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/disable_rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/disable_rdp.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/downgrade_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/downgrade_account.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/enable_multi_rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/enable_multi_rdp.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/enable_rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/enable_rdp.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/get_domain_sid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/get_domain_sid.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/honeyhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/honeyhash.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/invoke-phant0m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/invoke-phant0m.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/invoke_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/invoke_script.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/lock.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/logoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/logoff.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/disable_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/disable_security.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/get_emailitems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/get_emailitems.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/get_subfolders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/get_subfolders.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/mail_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/mail_search.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/search_gal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/search_gal.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/send_mail.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/mailraider/view_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/mailraider/view_email.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/powercat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/powercat.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/psinject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/psinject.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/reflective_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/reflective_inject.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/restart.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/runas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/runas.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/sid_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/sid_to_user.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/spawn.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/spawnas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/spawnas.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/switch_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/switch_listener.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/timestomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/timestomp.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/user_to_sid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/user_to_sid.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/vnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/vnc.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/wdigest_downgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/wdigest_downgrade.py -------------------------------------------------------------------------------- /lib/modules/powershell/management/zipfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/management/zipfolder.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/elevated/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/elevated/registry.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/elevated/schtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/elevated/schtasks.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/elevated/wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/elevated/wmi.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/elevated/wmi_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/elevated/wmi_updater.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/add_netuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/add_netuser.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/add_sid_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/add_sid_history.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/debugger.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/disable_machine_acct_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/disable_machine_acct_change.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/get_ssps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/get_ssps.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/install_ssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/install_ssp.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/memssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/memssp.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/misc/skeleton_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/misc/skeleton_key.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/powerbreach/deaduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/powerbreach/deaduser.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/powerbreach/eventlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/powerbreach/eventlog.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/powerbreach/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/powerbreach/resolver.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/userland/backdoor_lnk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/userland/backdoor_lnk.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/userland/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/userland/registry.py -------------------------------------------------------------------------------- /lib/modules/powershell/persistence/userland/schtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/persistence/userland/schtasks.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/ask.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/binder4-system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/binder4-system.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac_env.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac_eventvwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac_eventvwr.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac_fodhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac_fodhelper.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac_sdctlbypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac_sdctlbypass.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac_tokenmanipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac_tokenmanipulation.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/bypassuac_wscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/bypassuac_wscript.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/getsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/getsystem.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/gpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/gpp.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/mcafee_sitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/mcafee_sitelist.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/ms16-032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/ms16-032.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/ms16-135.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/ms16-135.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/allchecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/allchecks.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/find_dllhijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/find_dllhijack.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/service_exe_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/service_exe_restore.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/service_exe_stager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/service_exe_stager.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/service_exe_useradd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/service_exe_useradd.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/service_stager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/service_stager.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/service_useradd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/service_useradd.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/powerup/write_dllhijacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/powerup/write_dllhijacker.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/sherlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/sherlock.py -------------------------------------------------------------------------------- /lib/modules/powershell/privesc/tater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/privesc/tater.py -------------------------------------------------------------------------------- /lib/modules/powershell/recon/find_fruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/recon/find_fruit.py -------------------------------------------------------------------------------- /lib/modules/powershell/recon/get_sql_server_login_default_pw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/recon/get_sql_server_login_default_pw.py -------------------------------------------------------------------------------- /lib/modules/powershell/recon/http_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/recon/http_login.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/antivirusproduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/antivirusproduct.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/computerdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/computerdetails.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/dnsserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/dnsserver.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/findtrusteddocuments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/findtrusteddocuments.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/get_pathacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/get_pathacl.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/get_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/get_proxy.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/get_uaclevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/get_uaclevel.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/monitortcpconnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/monitortcpconnections.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/paranoia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/paranoia.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/host/winenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/host/winenum.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/arpscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/arpscan.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/bloodhound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/bloodhound.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/get_exploitable_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/get_exploitable_system.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/get_spn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/get_spn.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/get_sql_instance_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/get_sql_instance_domain.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/get_sql_server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/get_sql_server_info.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/portscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/portscan.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_computer_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_computer_field.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_foreign_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_foreign_group.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_foreign_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_foreign_user.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_gpo_computer_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_gpo_computer_admin.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_gpo_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_gpo_location.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_localadmin_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_localadmin_access.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_managed_security_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_managed_security_group.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/find_user_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/find_user_field.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_cached_rdpconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_cached_rdpconnection.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_computer.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_dfs_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_dfs_share.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_domain_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_domain_controller.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_domain_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_domain_policy.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_domain_trust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_domain_trust.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_fileserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_fileserver.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_forest.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_forest_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_forest_domain.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_gpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_gpo.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_gpo_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_gpo_computer.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_group.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_group_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_group_member.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_localgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_localgroup.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_loggedon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_loggedon.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_object_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_object_acl.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_ou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_ou.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_rdp_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_rdp_session.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_session.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_site.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_subnet.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/get_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/get_user.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/map_domain_trust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/map_domain_trust.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/process_hunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/process_hunter.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/set_ad_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/set_ad_object.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/share_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/share_finder.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/powerview/user_hunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/powerview/user_hunter.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/reverse_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/reverse_dns.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/smbautobrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/smbautobrute.py -------------------------------------------------------------------------------- /lib/modules/powershell/situational_awareness/network/smbscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/situational_awareness/network/smbscanner.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/get_schwifty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/get_schwifty.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/message.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/process_killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/process_killer.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/rick_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/rick_ascii.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/rick_astley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/rick_astley.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/thunderstruck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/thunderstruck.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/voicetroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/voicetroll.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/wallpaper.py -------------------------------------------------------------------------------- /lib/modules/powershell/trollsploit/wlmdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell/trollsploit/wlmdr.py -------------------------------------------------------------------------------- /lib/modules/powershell_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/powershell_template.py -------------------------------------------------------------------------------- /lib/modules/python/collection/linux/hashdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/linux/hashdump.py -------------------------------------------------------------------------------- /lib/modules/python/collection/linux/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/linux/keylogger.py -------------------------------------------------------------------------------- /lib/modules/python/collection/linux/mimipenguin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/linux/mimipenguin.py -------------------------------------------------------------------------------- /lib/modules/python/collection/linux/pillage_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/linux/pillage_user.py -------------------------------------------------------------------------------- /lib/modules/python/collection/linux/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/linux/sniffer.py -------------------------------------------------------------------------------- /lib/modules/python/collection/linux/xkeylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/linux/xkeylogger.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/browser_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/browser_dump.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/clipboard.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/hashdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/hashdump.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/imessage_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/imessage_dump.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/kerberosdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/kerberosdump.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/keychaindump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/keychaindump.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/keychaindump_chainbreaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/keychaindump_chainbreaker.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/keylogger.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/native_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/native_screenshot.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/native_screenshot_mss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/native_screenshot_mss.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/pillage_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/pillage_user.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/prompt.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/screensaver_alleyoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/screensaver_alleyoop.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/screenshot.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/search_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/search_email.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/sniffer.py -------------------------------------------------------------------------------- /lib/modules/python/collection/osx/webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/collection/osx/webcam.py -------------------------------------------------------------------------------- /lib/modules/python/exploit/web/jboss_jmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/exploit/web/jboss_jmx.py -------------------------------------------------------------------------------- /lib/modules/python/lateral_movement/multi/ssh_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/lateral_movement/multi/ssh_command.py -------------------------------------------------------------------------------- /lib/modules/python/lateral_movement/multi/ssh_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/lateral_movement/multi/ssh_launcher.py -------------------------------------------------------------------------------- /lib/modules/python/management/multi/kerberos_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/management/multi/kerberos_inject.py -------------------------------------------------------------------------------- /lib/modules/python/management/multi/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/management/multi/socks.py -------------------------------------------------------------------------------- /lib/modules/python/management/multi/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/management/multi/spawn.py -------------------------------------------------------------------------------- /lib/modules/python/management/osx/ls_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/management/osx/ls_m.py -------------------------------------------------------------------------------- /lib/modules/python/management/osx/screen_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/management/osx/screen_sharing.py -------------------------------------------------------------------------------- /lib/modules/python/management/osx/shellcodeinject64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/management/osx/shellcodeinject64.py -------------------------------------------------------------------------------- /lib/modules/python/persistence/multi/crontab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/persistence/multi/crontab.py -------------------------------------------------------------------------------- /lib/modules/python/persistence/osx/CreateHijacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/persistence/osx/CreateHijacker.py -------------------------------------------------------------------------------- /lib/modules/python/persistence/osx/RemoveDaemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/persistence/osx/RemoveDaemon.py -------------------------------------------------------------------------------- /lib/modules/python/persistence/osx/launchdaemonexecutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/persistence/osx/launchdaemonexecutable.py -------------------------------------------------------------------------------- /lib/modules/python/persistence/osx/loginhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/persistence/osx/loginhook.py -------------------------------------------------------------------------------- /lib/modules/python/persistence/osx/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/persistence/osx/mail.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/linux/linux_priv_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/linux/linux_priv_checker.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/linux/unix_privesc_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/linux/unix_privesc_check.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/multi/bashdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/multi/bashdoor.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/multi/sudo_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/multi/sudo_spawn.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/osx/dyld_print_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/osx/dyld_print_to_file.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/osx/piggyback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/osx/piggyback.py -------------------------------------------------------------------------------- /lib/modules/python/privesc/windows/get_gpppasswords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/privesc/windows/get_gpppasswords.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/host/multi/SuidGuidSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/host/multi/SuidGuidSearch.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/host/multi/WorldWriteableFileSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/host/multi/WorldWriteableFileSearch.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/host/osx/HijackScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/host/osx/HijackScanner.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/host/osx/situational_awareness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/host/osx/situational_awareness.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/dscl_get_groupmembers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/dscl_get_groupmembers.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/dscl_get_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/dscl_get_groups.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/dscl_get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/dscl_get_users.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_computers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_computers.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_domaincontrollers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_domaincontrollers.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_fileservers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_fileservers.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_groupmembers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_groupmembers.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_groupmemberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_groupmemberships.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_groups.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_ous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_ous.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_userinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_userinformation.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/active_directory/get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/active_directory/get_users.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/dcos/chronos_api_add_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/dcos/chronos_api_add_job.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/dcos/chronos_api_delete_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/dcos/chronos_api_delete_job.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/dcos/chronos_api_start_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/dcos/chronos_api_start_job.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/dcos/etcd_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/dcos/etcd_crawler.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/dcos/marathon_api_create_start_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/dcos/marathon_api_create_start_app.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/dcos/marathon_api_delete_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/dcos/marathon_api_delete_app.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/find_fruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/find_fruit.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/gethostbyname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/gethostbyname.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/http_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/http_rest_api.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/port_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/port_scan.py -------------------------------------------------------------------------------- /lib/modules/python/situational_awareness/network/smb_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/situational_awareness/network/smb_mount.py -------------------------------------------------------------------------------- /lib/modules/python/trollsploit/osx/change_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/trollsploit/osx/change_background.py -------------------------------------------------------------------------------- /lib/modules/python/trollsploit/osx/login_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/trollsploit/osx/login_message.py -------------------------------------------------------------------------------- /lib/modules/python/trollsploit/osx/say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/trollsploit/osx/say.py -------------------------------------------------------------------------------- /lib/modules/python/trollsploit/osx/thunderstruck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python/trollsploit/osx/thunderstruck.py -------------------------------------------------------------------------------- /lib/modules/python_jobs_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python_jobs_template.py -------------------------------------------------------------------------------- /lib/modules/python_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/modules/python_template.py -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Invoke-Obfuscation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Invoke-Obfuscation.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Invoke-Obfuscation.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Invoke-Obfuscation.psd1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Invoke-Obfuscation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Invoke-Obfuscation.psm1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/LICENSE -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-EncodedAsciiCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-EncodedAsciiCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-EncodedBXORCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-EncodedBXORCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-EncodedBinaryCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-EncodedBinaryCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-EncodedHexCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-EncodedHexCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-EncodedOctalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-EncodedOctalCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-ObfuscatedStringCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-ObfuscatedStringCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-ObfuscatedTokenCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-ObfuscatedTokenCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-PowerShellLauncher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-PowerShellLauncher.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/Out-SecureStringCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/Out-SecureStringCommand.ps1 -------------------------------------------------------------------------------- /lib/powershell/Invoke-Obfuscation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/powershell/Invoke-Obfuscation/README.md -------------------------------------------------------------------------------- /lib/stagers/multi/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/multi/bash.py -------------------------------------------------------------------------------- /lib/stagers/multi/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/multi/launcher.py -------------------------------------------------------------------------------- /lib/stagers/multi/pyinstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/multi/pyinstaller.py -------------------------------------------------------------------------------- /lib/stagers/multi/war.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/multi/war.py -------------------------------------------------------------------------------- /lib/stagers/osx/applescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/applescript.py -------------------------------------------------------------------------------- /lib/stagers/osx/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/application.py -------------------------------------------------------------------------------- /lib/stagers/osx/ducky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/ducky.py -------------------------------------------------------------------------------- /lib/stagers/osx/dylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/dylib.py -------------------------------------------------------------------------------- /lib/stagers/osx/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/jar.py -------------------------------------------------------------------------------- /lib/stagers/osx/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/launcher.py -------------------------------------------------------------------------------- /lib/stagers/osx/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/macho.py -------------------------------------------------------------------------------- /lib/stagers/osx/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/macro.py -------------------------------------------------------------------------------- /lib/stagers/osx/pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/pkg.py -------------------------------------------------------------------------------- /lib/stagers/osx/safari_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/safari_launcher.py -------------------------------------------------------------------------------- /lib/stagers/osx/teensy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/osx/teensy.py -------------------------------------------------------------------------------- /lib/stagers/windows/aspx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/aspx.py -------------------------------------------------------------------------------- /lib/stagers/windows/bunny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/bunny.py -------------------------------------------------------------------------------- /lib/stagers/windows/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/dll.py -------------------------------------------------------------------------------- /lib/stagers/windows/ducky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/ducky.py -------------------------------------------------------------------------------- /lib/stagers/windows/hta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/hta.py -------------------------------------------------------------------------------- /lib/stagers/windows/launcher_bat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/launcher_bat.py -------------------------------------------------------------------------------- /lib/stagers/windows/launcher_lnk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/launcher_lnk.py -------------------------------------------------------------------------------- /lib/stagers/windows/launcher_sct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/launcher_sct.py -------------------------------------------------------------------------------- /lib/stagers/windows/launcher_vbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/launcher_vbs.py -------------------------------------------------------------------------------- /lib/stagers/windows/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/macro.py -------------------------------------------------------------------------------- /lib/stagers/windows/macroless_msword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/macroless_msword.py -------------------------------------------------------------------------------- /lib/stagers/windows/ms16-051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/ms16-051.py -------------------------------------------------------------------------------- /lib/stagers/windows/php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/php.py -------------------------------------------------------------------------------- /lib/stagers/windows/starfighters_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/starfighters_js.py -------------------------------------------------------------------------------- /lib/stagers/windows/starfighters_js.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/starfighters_js.pyc -------------------------------------------------------------------------------- /lib/stagers/windows/starfighters_js_sct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/starfighters_js_sct.py -------------------------------------------------------------------------------- /lib/stagers/windows/starfighters_vbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/starfighters_vbs.py -------------------------------------------------------------------------------- /lib/stagers/windows/starfighters_vbs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/starfighters_vbs.pyc -------------------------------------------------------------------------------- /lib/stagers/windows/starfighters_xsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/starfighters_xsl.py -------------------------------------------------------------------------------- /lib/stagers/windows/teensy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/lib/stagers/windows/teensy.py -------------------------------------------------------------------------------- /setup/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/setup/cert.sh -------------------------------------------------------------------------------- /setup/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/setup/install.sh -------------------------------------------------------------------------------- /setup/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/setup/reset.sh -------------------------------------------------------------------------------- /setup/setup_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybervaca/Empire-test-mod/HEAD/setup/setup_database.py --------------------------------------------------------------------------------