├── .gitignore ├── C2_Profiles └── mdm │ ├── Dockerfile │ ├── __init__.py │ ├── c2_code │ ├── agents.json │ ├── config.json │ └── server │ ├── certs │ └── .gitkeep │ ├── micromdm.db │ └── mythic │ ├── __init__.py │ ├── c2_functions │ ├── C2_RPC_functions.py │ ├── __init__.py │ └── mdm.py │ ├── c2_service.sh │ ├── mythic_service.py │ └── rabbitmq_config.json ├── Payload_Type └── orthrus │ ├── Dockerfile │ ├── agent_code │ └── code.txt │ └── mythic │ ├── agent_functions │ ├── __init__.py │ ├── builder.py │ ├── certificate_list.py │ ├── device_information.py │ ├── force_callback.py │ ├── install_pkg.py │ ├── install_profile.py │ ├── installed_application_list.py │ ├── profile_list.py │ ├── provisioning_profile_list.py │ └── security_info.py │ ├── browser_scripts │ └── create_table.js │ ├── mythic_service.py │ ├── payload_service.sh │ └── rabbitmq_config.json ├── README.md ├── agent_icons └── orthrus.svg └── config.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/Dockerfile -------------------------------------------------------------------------------- /C2_Profiles/mdm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/c2_code/agents.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/c2_code/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/c2_code/config.json -------------------------------------------------------------------------------- /C2_Profiles/mdm/c2_code/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/c2_code/server -------------------------------------------------------------------------------- /C2_Profiles/mdm/certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/micromdm.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/c2_functions/C2_RPC_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/mythic/c2_functions/C2_RPC_functions.py -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/c2_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/c2_functions/mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/mythic/c2_functions/mdm.py -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/c2_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/mythic/c2_service.sh -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/mythic_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/mythic/mythic_service.py -------------------------------------------------------------------------------- /C2_Profiles/mdm/mythic/rabbitmq_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/C2_Profiles/mdm/mythic/rabbitmq_config.json -------------------------------------------------------------------------------- /Payload_Type/orthrus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/Dockerfile -------------------------------------------------------------------------------- /Payload_Type/orthrus/agent_code/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/agent_code/code.txt -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/builder.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/certificate_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/certificate_list.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/device_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/device_information.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/force_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/force_callback.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/install_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/install_pkg.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/install_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/install_profile.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/installed_application_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/installed_application_list.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/profile_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/profile_list.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/provisioning_profile_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/provisioning_profile_list.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/agent_functions/security_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/agent_functions/security_info.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/browser_scripts/create_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/browser_scripts/create_table.js -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/mythic_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/mythic_service.py -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/payload_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/payload_service.sh -------------------------------------------------------------------------------- /Payload_Type/orthrus/mythic/rabbitmq_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/Payload_Type/orthrus/mythic/rabbitmq_config.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/README.md -------------------------------------------------------------------------------- /agent_icons/orthrus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/agent_icons/orthrus.svg -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/orthrus/HEAD/config.json --------------------------------------------------------------------------------