├── .gitignore ├── C2_Profiles ├── .keep └── jamfserver │ ├── Dockerfile │ ├── jamfserver │ ├── __init__.py │ ├── c2_code │ │ ├── config.json │ │ ├── fake.html │ │ └── server │ └── mythic │ │ ├── __init__.py │ │ └── c2_functions │ │ ├── __init__.py │ │ └── jamfserver.py │ ├── main.py │ └── rabbitmq_config.json ├── Payload_Type ├── .keep └── typhon │ ├── Dockerfile │ ├── __init__.py │ ├── main.py │ ├── rabbitmq_config.json │ └── typhon │ ├── __init__.py │ ├── agent_code │ └── com.jamfsoftware.jamf.plist │ ├── agent_functions │ ├── __init__.py │ ├── add_user.py │ ├── builder.py │ ├── delete_user.py │ ├── execute_command.py │ ├── exit.py │ └── typhon.svg │ └── browser_scripts │ └── create_table.js ├── README.md ├── agent_icons ├── .keep └── typhon.svg ├── config.json ├── documentation-c2 ├── .keep └── jamfserver │ └── _index.md ├── documentation-payload ├── .keep └── typhon │ ├── _index.md │ ├── c2_profiles │ ├── _index.md │ └── jamfserver.md │ ├── commands │ ├── _index.md │ ├── add_user.md │ ├── delete_user.md │ ├── execute_command.md │ └── exit.md │ ├── development.md │ ├── opsec.md │ └── typhon.svg └── documentation-wrapper └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/.gitignore -------------------------------------------------------------------------------- /C2_Profiles/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/Dockerfile -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/c2_code/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/jamfserver/c2_code/config.json -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/c2_code/fake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/jamfserver/c2_code/fake.html -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/c2_code/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/jamfserver/c2_code/server -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/mythic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/mythic/c2_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/jamfserver/mythic/c2_functions/jamfserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/jamfserver/mythic/c2_functions/jamfserver.py -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/main.py -------------------------------------------------------------------------------- /C2_Profiles/jamfserver/rabbitmq_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/C2_Profiles/jamfserver/rabbitmq_config.json -------------------------------------------------------------------------------- /Payload_Type/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/typhon/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/Dockerfile -------------------------------------------------------------------------------- /Payload_Type/typhon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/typhon/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/main.py -------------------------------------------------------------------------------- /Payload_Type/typhon/rabbitmq_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/rabbitmq_config.json -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/__init__.py -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_code/com.jamfsoftware.jamf.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_code/com.jamfsoftware.jamf.plist -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_functions/add_user.py -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_functions/builder.py -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/delete_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_functions/delete_user.py -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_functions/execute_command.py -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_functions/exit.py -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/agent_functions/typhon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/agent_functions/typhon.svg -------------------------------------------------------------------------------- /Payload_Type/typhon/typhon/browser_scripts/create_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/Payload_Type/typhon/typhon/browser_scripts/create_table.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/README.md -------------------------------------------------------------------------------- /agent_icons/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent_icons/typhon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/agent_icons/typhon.svg -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/config.json -------------------------------------------------------------------------------- /documentation-c2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-c2/jamfserver/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-c2/jamfserver/_index.md -------------------------------------------------------------------------------- /documentation-payload/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/typhon/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/_index.md -------------------------------------------------------------------------------- /documentation-payload/typhon/c2_profiles/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/c2_profiles/_index.md -------------------------------------------------------------------------------- /documentation-payload/typhon/c2_profiles/jamfserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/c2_profiles/jamfserver.md -------------------------------------------------------------------------------- /documentation-payload/typhon/commands/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/commands/_index.md -------------------------------------------------------------------------------- /documentation-payload/typhon/commands/add_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/commands/add_user.md -------------------------------------------------------------------------------- /documentation-payload/typhon/commands/delete_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/commands/delete_user.md -------------------------------------------------------------------------------- /documentation-payload/typhon/commands/execute_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/commands/execute_command.md -------------------------------------------------------------------------------- /documentation-payload/typhon/commands/exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/commands/exit.md -------------------------------------------------------------------------------- /documentation-payload/typhon/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/development.md -------------------------------------------------------------------------------- /documentation-payload/typhon/opsec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/opsec.md -------------------------------------------------------------------------------- /documentation-payload/typhon/typhon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/typhon/HEAD/documentation-payload/typhon/typhon.svg -------------------------------------------------------------------------------- /documentation-wrapper/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------