├── .gitignore ├── C2_Profiles └── .keep ├── LICENSE.md ├── Payload_Type ├── .keep └── xenon │ ├── Dockerfile │ ├── __init__.py │ ├── main.py │ ├── translator │ ├── __init__.py │ ├── commands_from_c2.py │ ├── commands_from_implant.py │ ├── translator.py │ └── utils.py │ └── xenon │ ├── __init__.py │ ├── agent_code │ ├── Include │ │ ├── Aes.h │ │ ├── BeaconCompatibility.h │ │ ├── Checkin.h │ │ ├── Config.h │ │ ├── Crypto.h │ │ ├── Debug.h │ │ ├── Http.h │ │ ├── Identity.h │ │ ├── Inject.h │ │ ├── Mythic.h │ │ ├── Network.h │ │ ├── Package.h │ │ ├── Parser.h │ │ ├── Sleep.h │ │ ├── Spawn.h │ │ ├── Strategy.h │ │ ├── Task.h │ │ ├── Tasks │ │ │ ├── Agent.h │ │ │ ├── Download.h │ │ │ ├── Exit.h │ │ │ ├── FileSystem.h │ │ │ ├── InjectShellcode.h │ │ │ ├── InlineExecute.h │ │ │ ├── Powershell.h │ │ │ ├── Process.h │ │ │ ├── Shell.h │ │ │ ├── Token.h │ │ │ └── Upload.h │ │ ├── Transform.h │ │ ├── Utils.h │ │ ├── Xenon.h │ │ ├── hmac_sha256.h │ │ └── sha256.h │ ├── Makefile │ ├── Src │ │ ├── Aes.c │ │ ├── BeaconCompatibility.c │ │ ├── Checkin.c │ │ ├── Crypto.c │ │ ├── Http.c │ │ ├── Identity.c │ │ ├── Inject.c │ │ ├── Mythic.c │ │ ├── Network.c │ │ ├── Package.c │ │ ├── Parser.c │ │ ├── Sleep.c │ │ ├── Spawn.c │ │ ├── Strategy.c │ │ ├── Task.c │ │ ├── Tasks │ │ │ ├── Agent.c │ │ │ ├── Download.c │ │ │ ├── Exit.c │ │ │ ├── FileSystem.c │ │ │ ├── InjectShellcode.c │ │ │ ├── InlineExecute.c │ │ │ ├── Powershell.c │ │ │ ├── Process.c │ │ │ ├── Shell.c │ │ │ ├── Token.c │ │ │ └── Upload.c │ │ ├── Transform.c │ │ ├── Utils.c │ │ ├── Xenon.c │ │ ├── hmac_sha256.c │ │ ├── main.c │ │ └── sha256.c │ ├── modules │ │ ├── core │ │ │ ├── inline-ea │ │ │ │ ├── inline-ea.x64.o │ │ │ │ └── inline-ea.x86.o │ │ │ └── mimikatz │ │ │ │ ├── mimikatz.x64.exe │ │ │ │ └── mimikatz.x86.exe │ │ └── trustedsec_bofs │ │ │ ├── adcs_enum │ │ │ ├── adcs_enum.x64.o │ │ │ └── adcs_enum.x86.o │ │ │ ├── adcs_enum_com │ │ │ ├── adcs_enum_com.x64.o │ │ │ └── adcs_enum_com.x86.o │ │ │ ├── adcs_enum_com2 │ │ │ ├── adcs_enum_com2.x64.o │ │ │ └── adcs_enum_com2.x86.o │ │ │ ├── adv_audit_policies │ │ │ ├── adv_audit_policies.x64.o │ │ │ └── adv_audit_policies.x86.o │ │ │ ├── arp │ │ │ ├── arp.x64.o │ │ │ └── arp.x86.o │ │ │ ├── cacls │ │ │ ├── cacls.x64.o │ │ │ └── cacls.x86.o │ │ │ ├── dir │ │ │ ├── dir.x64.o │ │ │ └── dir.x86.o │ │ │ ├── driversigs │ │ │ ├── driversigs.x64.o │ │ │ └── driversigs.x86.o │ │ │ ├── enum_filter_driver │ │ │ ├── enum_filter_driver.x64.o │ │ │ └── enum_filter_driver.x86.o │ │ │ ├── enumlocalsessions │ │ │ ├── enumlocalsessions.x64.o │ │ │ └── enumlocalsessions.x86.o │ │ │ ├── env │ │ │ ├── env.x64.o │ │ │ └── env.x86.o │ │ │ ├── findLoadedModule │ │ │ ├── findLoadedModule.x64.o │ │ │ └── findLoadedModule.x86.o │ │ │ ├── get-netsession │ │ │ ├── get-netsession.x64.o │ │ │ └── get-netsession.x86.o │ │ │ ├── get-netsession2 │ │ │ ├── get-netsession2.x64.o │ │ │ └── get-netsession2.x86.o │ │ │ ├── get_password_policy │ │ │ ├── get_password_policy.x64.o │ │ │ └── get_password_policy.x86.o │ │ │ ├── ipconfig │ │ │ ├── ipconfig.x64.o │ │ │ └── ipconfig.x86.o │ │ │ ├── ldapsearch │ │ │ ├── ldapsearch.x64.o │ │ │ └── ldapsearch.x86.o │ │ │ ├── list_firewall_rules │ │ │ ├── list_firewall_rules.x64.o │ │ │ └── list_firewall_rules.x86.o │ │ │ ├── listdns │ │ │ ├── listdns.x64.o │ │ │ └── listdns.x86.o │ │ │ ├── listmods │ │ │ ├── listmods.x64.o │ │ │ └── listmods.x86.o │ │ │ ├── locale │ │ │ ├── locale.x64.o │ │ │ └── locale.x86.o │ │ │ ├── netgroup │ │ │ ├── netgroup.x64.o │ │ │ └── netgroup.x86.o │ │ │ ├── netlocalgroup │ │ │ ├── netlocalgroup.x64.o │ │ │ └── netlocalgroup.x86.o │ │ │ ├── netlocalgroup2 │ │ │ ├── netlocalgroup2.x64.o │ │ │ └── netlocalgroup2.x86.o │ │ │ ├── netloggedon │ │ │ ├── netloggedon.x64.o │ │ │ └── netloggedon.x86.o │ │ │ ├── netloggedon2 │ │ │ ├── netloggedon2.x64.o │ │ │ └── netloggedon2.x86.o │ │ │ ├── netshares │ │ │ ├── netshares.x64.o │ │ │ └── netshares.x86.o │ │ │ ├── netstat │ │ │ ├── netstat.x64.o │ │ │ └── netstat.x86.o │ │ │ ├── nettime │ │ │ ├── nettime.x64.o │ │ │ └── nettime.x86.o │ │ │ ├── netuptime │ │ │ ├── netuptime.x64.o │ │ │ └── netuptime.x86.o │ │ │ ├── netuse │ │ │ ├── netuse.x64.o │ │ │ └── netuse.x86.o │ │ │ ├── netuser │ │ │ ├── netuser.x64.o │ │ │ └── netuser.x86.o │ │ │ ├── netuserenum │ │ │ ├── netuserenum.x64.o │ │ │ └── netuserenum.x86.o │ │ │ ├── netview │ │ │ ├── netview.x64.o │ │ │ └── netview.x86.o │ │ │ ├── nonpagedldapsearch │ │ │ ├── nonpagedldapsearch.x64.o │ │ │ └── nonpagedldapsearch.x86.o │ │ │ ├── notepad │ │ │ ├── notepad.x64.o │ │ │ └── notepad.x86.o │ │ │ ├── nslookup │ │ │ ├── nslookup.x64.o │ │ │ └── nslookup.x86.o │ │ │ ├── probe │ │ │ ├── probe.x64.o │ │ │ └── probe.x86.o │ │ │ ├── reg_query │ │ │ ├── reg_query.x64.o │ │ │ └── reg_query.x86.o │ │ │ ├── regsession │ │ │ ├── regsession.x64.o │ │ │ └── regsession.x86.o │ │ │ ├── resources │ │ │ ├── resources.x64.o │ │ │ └── resources.x86.o │ │ │ ├── routeprint │ │ │ ├── routeprint.x64.o │ │ │ └── routeprint.x86.o │ │ │ ├── sc_enum │ │ │ ├── sc_enum.x64.o │ │ │ └── sc_enum.x86.o │ │ │ ├── sc_qc │ │ │ ├── sc_qc.x64.o │ │ │ └── sc_qc.x86.o │ │ │ ├── sc_qdescription │ │ │ ├── sc_qdescription.x64.o │ │ │ └── sc_qdescription.x86.o │ │ │ ├── sc_qfailure │ │ │ ├── sc_qfailure.x64.o │ │ │ └── sc_qfailure.x86.o │ │ │ ├── sc_qtriggerinfo │ │ │ ├── sc_qtriggerinfo.x64.o │ │ │ └── sc_qtriggerinfo.x86.o │ │ │ ├── sc_query │ │ │ ├── sc_query.x64.o │ │ │ └── sc_query.x86.o │ │ │ ├── schtasksenum │ │ │ ├── schtasksenum.x64.o │ │ │ └── schtasksenum.x86.o │ │ │ ├── schtasksquery │ │ │ ├── schtasksquery.x64.o │ │ │ └── schtasksquery.x86.o │ │ │ ├── tasklist │ │ │ ├── tasklist.x64.o │ │ │ └── tasklist.x86.o │ │ │ ├── test │ │ │ ├── test.x64.o │ │ │ └── test.x86.o │ │ │ ├── uptime │ │ │ ├── uptime.x64.o │ │ │ └── uptime.x86.o │ │ │ ├── vssenum │ │ │ ├── vssenum.x64.o │ │ │ └── vssenum.x86.o │ │ │ ├── whoami │ │ │ ├── whoami.x64.o │ │ │ └── whoami.x86.o │ │ │ ├── windowlist │ │ │ ├── windowlist.x64.o │ │ │ └── windowlist.x86.o │ │ │ └── wmi_query │ │ │ ├── wmi_query.x64.o │ │ │ └── wmi_query.x86.o │ ├── stub │ │ ├── Makefile │ │ ├── hash_strings.py │ │ ├── patch_size.py │ │ ├── set_pipe.c │ │ ├── structs.h │ │ └── stub.bin │ ├── tests │ │ ├── test_decrypt_message.py │ │ ├── test_settings_general.py │ │ └── test_settings_malleable.py │ └── utils │ │ ├── custom_hash.py │ │ └── hash_coff_funcs.py │ └── mythic │ ├── __init__.py │ ├── agent_functions │ ├── __init__.py │ ├── builder.py │ ├── cd.py │ ├── cp.py │ ├── download.py │ ├── example.py │ ├── execute_assembly.py │ ├── exit.py │ ├── getuid.py │ ├── inject_shellcode.py │ ├── inline_execute.py │ ├── inline_execute_assembly.py │ ├── ls.py │ ├── make_token.py │ ├── mimikatz.py │ ├── mkdir.py │ ├── ps.py │ ├── pwd.py │ ├── register_process_inject_kit.py │ ├── rev2self.py │ ├── rm.py │ ├── sa_adcs_enum.py │ ├── sa_arp.py │ ├── sa_driversigs.py │ ├── sa_get_password_policy.py │ ├── sa_ipconfig.py │ ├── sa_ldapsearch.py │ ├── sa_list_firewall_rules.py │ ├── sa_listmods.py │ ├── sa_netshares.py │ ├── sa_netstat.py │ ├── sa_netuser.py │ ├── sa_netview.py │ ├── sa_nslookup.py │ ├── sa_probe.py │ ├── sa_sc_enum.py │ ├── sa_sc_qc.py │ ├── sa_sc_query.py │ ├── sa_schtasksenum.py │ ├── sa_schtasksquery.py │ ├── sa_whoami.py │ ├── shell.py │ ├── sleep.py │ ├── spawnto.py │ ├── status.py │ ├── steal_token.py │ ├── upload.py │ ├── utils │ │ ├── agent_global_settings.py │ │ ├── bof_utilities.py │ │ └── mythicrpc_utilities.py │ └── v1-transparent.png │ ├── browser_scripts │ ├── ls_new.js │ └── ps_new.js │ └── utils │ ├── __init__.py │ └── packer.py ├── README.md ├── agent_capabilities.json ├── agent_icons ├── .keep └── Xenon.png ├── config.json ├── documentation-c2 └── .keep ├── documentation-payload ├── .keep └── xenon │ ├── Xenon.png │ ├── _index.md │ ├── c2_profiles │ ├── HTTPX.md │ ├── _index.md │ └── examples │ │ └── _index.md │ ├── commands │ └── _index.md │ ├── contributing │ └── _index.md │ └── opsec │ └── _index.md ├── documentation-wrapper └── .keep ├── images ├── cs-token-and-ps.png └── v1-transparent.png └── malleable-profile-examples ├── apiclient.json ├── jquery.json └── microsoft.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/.gitignore -------------------------------------------------------------------------------- /C2_Profiles/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Payload_Type/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/xenon/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/Dockerfile -------------------------------------------------------------------------------- /Payload_Type/xenon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/xenon/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/main.py -------------------------------------------------------------------------------- /Payload_Type/xenon/translator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/xenon/translator/commands_from_c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/translator/commands_from_c2.py -------------------------------------------------------------------------------- /Payload_Type/xenon/translator/commands_from_implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/translator/commands_from_implant.py -------------------------------------------------------------------------------- /Payload_Type/xenon/translator/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/translator/translator.py -------------------------------------------------------------------------------- /Payload_Type/xenon/translator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/translator/utils.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Aes.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/BeaconCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/BeaconCompatibility.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Checkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Checkin.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Config.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Crypto.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Debug.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Http.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Identity.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Inject.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Mythic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Mythic.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Network.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Package.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Parser.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Sleep.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Spawn.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Strategy.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Task.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Agent.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Download.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Exit.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/FileSystem.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/InjectShellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/InjectShellcode.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/InlineExecute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/InlineExecute.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Powershell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Powershell.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Process.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Shell.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Token.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Tasks/Upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Tasks/Upload.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Transform.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Utils.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/Xenon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/Xenon.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/hmac_sha256.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Include/sha256.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Makefile -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Aes.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/BeaconCompatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/BeaconCompatibility.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Checkin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Checkin.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Crypto.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Http.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Identity.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Inject.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Mythic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Mythic.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Network.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Package.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Parser.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Sleep.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Spawn.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Strategy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Strategy.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Task.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Agent.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Download.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Exit.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/FileSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/FileSystem.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/InjectShellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/InjectShellcode.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/InlineExecute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/InlineExecute.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Powershell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Powershell.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Process.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Shell.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Token.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Tasks/Upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Tasks/Upload.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Transform.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Utils.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/Xenon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/Xenon.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/hmac_sha256.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/main.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/Src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/Src/sha256.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/core/inline-ea/inline-ea.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/core/inline-ea/inline-ea.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/core/inline-ea/inline-ea.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/core/inline-ea/inline-ea.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/core/mimikatz/mimikatz.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/core/mimikatz/mimikatz.x64.exe -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/core/mimikatz/mimikatz.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/core/mimikatz/mimikatz.x86.exe -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum/adcs_enum.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum/adcs_enum.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum/adcs_enum.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum/adcs_enum.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com/adcs_enum_com.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com/adcs_enum_com.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com/adcs_enum_com.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com/adcs_enum_com.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com2/adcs_enum_com2.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com2/adcs_enum_com2.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com2/adcs_enum_com2.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adcs_enum_com2/adcs_enum_com2.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adv_audit_policies/adv_audit_policies.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adv_audit_policies/adv_audit_policies.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adv_audit_policies/adv_audit_policies.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/adv_audit_policies/adv_audit_policies.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/arp/arp.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/arp/arp.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/arp/arp.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/arp/arp.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/cacls/cacls.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/cacls/cacls.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/cacls/cacls.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/cacls/cacls.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/dir/dir.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/dir/dir.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/dir/dir.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/dir/dir.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/driversigs/driversigs.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/driversigs/driversigs.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/driversigs/driversigs.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/driversigs/driversigs.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enum_filter_driver/enum_filter_driver.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enum_filter_driver/enum_filter_driver.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enum_filter_driver/enum_filter_driver.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enum_filter_driver/enum_filter_driver.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enumlocalsessions/enumlocalsessions.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enumlocalsessions/enumlocalsessions.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enumlocalsessions/enumlocalsessions.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/enumlocalsessions/enumlocalsessions.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/env/env.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/env/env.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/env/env.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/env/env.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/findLoadedModule/findLoadedModule.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/findLoadedModule/findLoadedModule.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/findLoadedModule/findLoadedModule.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/findLoadedModule/findLoadedModule.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession/get-netsession.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession/get-netsession.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession/get-netsession.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession/get-netsession.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession2/get-netsession2.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession2/get-netsession2.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession2/get-netsession2.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get-netsession2/get-netsession2.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get_password_policy/get_password_policy.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get_password_policy/get_password_policy.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get_password_policy/get_password_policy.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/get_password_policy/get_password_policy.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ipconfig/ipconfig.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ipconfig/ipconfig.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ipconfig/ipconfig.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ipconfig/ipconfig.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ldapsearch/ldapsearch.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ldapsearch/ldapsearch.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ldapsearch/ldapsearch.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/ldapsearch/ldapsearch.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/list_firewall_rules/list_firewall_rules.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/list_firewall_rules/list_firewall_rules.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/list_firewall_rules/list_firewall_rules.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/list_firewall_rules/list_firewall_rules.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listdns/listdns.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listdns/listdns.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listdns/listdns.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listdns/listdns.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listmods/listmods.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listmods/listmods.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listmods/listmods.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/listmods/listmods.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/locale/locale.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/locale/locale.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/locale/locale.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/locale/locale.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netgroup/netgroup.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netgroup/netgroup.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netgroup/netgroup.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netgroup/netgroup.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup/netlocalgroup.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup/netlocalgroup.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup/netlocalgroup.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup/netlocalgroup.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup2/netlocalgroup2.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup2/netlocalgroup2.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup2/netlocalgroup2.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netlocalgroup2/netlocalgroup2.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon/netloggedon.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon/netloggedon.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon/netloggedon.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon/netloggedon.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon2/netloggedon2.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon2/netloggedon2.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon2/netloggedon2.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netloggedon2/netloggedon2.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netshares/netshares.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netshares/netshares.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netshares/netshares.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netshares/netshares.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netstat/netstat.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netstat/netstat.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netstat/netstat.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netstat/netstat.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nettime/nettime.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nettime/nettime.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nettime/nettime.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nettime/nettime.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuptime/netuptime.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuptime/netuptime.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuptime/netuptime.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuptime/netuptime.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuse/netuse.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuse/netuse.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuse/netuse.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuse/netuse.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuser/netuser.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuser/netuser.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuser/netuser.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuser/netuser.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuserenum/netuserenum.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuserenum/netuserenum.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuserenum/netuserenum.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netuserenum/netuserenum.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netview/netview.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netview/netview.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netview/netview.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/netview/netview.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nonpagedldapsearch/nonpagedldapsearch.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nonpagedldapsearch/nonpagedldapsearch.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nonpagedldapsearch/nonpagedldapsearch.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nonpagedldapsearch/nonpagedldapsearch.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/notepad/notepad.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/notepad/notepad.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/notepad/notepad.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/notepad/notepad.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nslookup/nslookup.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nslookup/nslookup.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nslookup/nslookup.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/nslookup/nslookup.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/probe/probe.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/probe/probe.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/probe/probe.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/probe/probe.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/reg_query/reg_query.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/reg_query/reg_query.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/reg_query/reg_query.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/reg_query/reg_query.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/regsession/regsession.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/regsession/regsession.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/regsession/regsession.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/regsession/regsession.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/resources/resources.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/resources/resources.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/resources/resources.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/resources/resources.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/routeprint/routeprint.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/routeprint/routeprint.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/routeprint/routeprint.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/routeprint/routeprint.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_enum/sc_enum.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_enum/sc_enum.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_enum/sc_enum.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_enum/sc_enum.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qc/sc_qc.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qc/sc_qc.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qc/sc_qc.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qc/sc_qc.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qdescription/sc_qdescription.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qdescription/sc_qdescription.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qdescription/sc_qdescription.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qdescription/sc_qdescription.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qfailure/sc_qfailure.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qfailure/sc_qfailure.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qfailure/sc_qfailure.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qfailure/sc_qfailure.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qtriggerinfo/sc_qtriggerinfo.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qtriggerinfo/sc_qtriggerinfo.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qtriggerinfo/sc_qtriggerinfo.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_qtriggerinfo/sc_qtriggerinfo.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_query/sc_query.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_query/sc_query.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_query/sc_query.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/sc_query/sc_query.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksenum/schtasksenum.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksenum/schtasksenum.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksenum/schtasksenum.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksenum/schtasksenum.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksquery/schtasksquery.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksquery/schtasksquery.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksquery/schtasksquery.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/schtasksquery/schtasksquery.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/tasklist/tasklist.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/tasklist/tasklist.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/tasklist/tasklist.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/tasklist/tasklist.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/test/test.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/test/test.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/test/test.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/test/test.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/uptime/uptime.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/uptime/uptime.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/uptime/uptime.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/uptime/uptime.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/vssenum/vssenum.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/vssenum/vssenum.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/vssenum/vssenum.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/vssenum/vssenum.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/whoami/whoami.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/whoami/whoami.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/whoami/whoami.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/whoami/whoami.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/windowlist/windowlist.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/windowlist/windowlist.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/windowlist/windowlist.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/windowlist/windowlist.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/wmi_query/wmi_query.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/wmi_query/wmi_query.x64.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/wmi_query/wmi_query.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/modules/trustedsec_bofs/wmi_query/wmi_query.x86.o -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/stub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/stub/Makefile -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/stub/hash_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/stub/hash_strings.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/stub/patch_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/stub/patch_size.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/stub/set_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/stub/set_pipe.c -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/stub/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/stub/structs.h -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/stub/stub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/stub/stub.bin -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/tests/test_decrypt_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/tests/test_decrypt_message.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/tests/test_settings_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/tests/test_settings_general.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/tests/test_settings_malleable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/tests/test_settings_malleable.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/utils/custom_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/utils/custom_hash.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/agent_code/utils/hash_coff_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/agent_code/utils/hash_coff_funcs.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/__init__.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/__init__.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/builder.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/cd.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/cp.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/download.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/example.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/execute_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/execute_assembly.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/exit.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/getuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/getuid.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/inject_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/inject_shellcode.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/inline_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/inline_execute.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/inline_execute_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/inline_execute_assembly.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/ls.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/make_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/make_token.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/mimikatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/mimikatz.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/mkdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/mkdir.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/ps.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/pwd.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/register_process_inject_kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/register_process_inject_kit.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/rev2self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/rev2self.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/rm.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_adcs_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_adcs_enum.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_arp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_arp.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_driversigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_driversigs.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_get_password_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_get_password_policy.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_ipconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_ipconfig.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_ldapsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_ldapsearch.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_list_firewall_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_list_firewall_rules.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_listmods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_listmods.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_netshares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_netshares.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_netstat.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_netuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_netuser.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_netview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_netview.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_nslookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_nslookup.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_probe.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_sc_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_sc_enum.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_sc_qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_sc_qc.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_sc_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_sc_query.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_schtasksenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_schtasksenum.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_schtasksquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_schtasksquery.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sa_whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sa_whoami.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/shell.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/sleep.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/spawnto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/spawnto.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/status.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/steal_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/steal_token.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/upload.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/utils/agent_global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/utils/agent_global_settings.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/utils/bof_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/utils/bof_utilities.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/utils/mythicrpc_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/utils/mythicrpc_utilities.py -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/agent_functions/v1-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/agent_functions/v1-transparent.png -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/browser_scripts/ls_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/browser_scripts/ls_new.js -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/browser_scripts/ps_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/browser_scripts/ps_new.js -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/xenon/xenon/mythic/utils/packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/Payload_Type/xenon/xenon/mythic/utils/packer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/README.md -------------------------------------------------------------------------------- /agent_capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/agent_capabilities.json -------------------------------------------------------------------------------- /agent_icons/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent_icons/Xenon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/agent_icons/Xenon.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/config.json -------------------------------------------------------------------------------- /documentation-c2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/xenon/Xenon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/Xenon.png -------------------------------------------------------------------------------- /documentation-payload/xenon/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/_index.md -------------------------------------------------------------------------------- /documentation-payload/xenon/c2_profiles/HTTPX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/c2_profiles/HTTPX.md -------------------------------------------------------------------------------- /documentation-payload/xenon/c2_profiles/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/c2_profiles/_index.md -------------------------------------------------------------------------------- /documentation-payload/xenon/c2_profiles/examples/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/c2_profiles/examples/_index.md -------------------------------------------------------------------------------- /documentation-payload/xenon/commands/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/commands/_index.md -------------------------------------------------------------------------------- /documentation-payload/xenon/contributing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/contributing/_index.md -------------------------------------------------------------------------------- /documentation-payload/xenon/opsec/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/documentation-payload/xenon/opsec/_index.md -------------------------------------------------------------------------------- /documentation-wrapper/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/cs-token-and-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/images/cs-token-and-ps.png -------------------------------------------------------------------------------- /images/v1-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/images/v1-transparent.png -------------------------------------------------------------------------------- /malleable-profile-examples/apiclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/malleable-profile-examples/apiclient.json -------------------------------------------------------------------------------- /malleable-profile-examples/jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/malleable-profile-examples/jquery.json -------------------------------------------------------------------------------- /malleable-profile-examples/microsoft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Xenon/HEAD/malleable-profile-examples/microsoft.json --------------------------------------------------------------------------------