diff --git a/Payload_Type/apollo/apollo/mythic/agent_functions/builder.py b/Payload_Type/apollo/apollo/mythic/agent_functions/builder.py index 545f3ff4..dc7561c0 100644 --- a/Payload_Type/apollo/apollo/mythic/agent_functions/builder.py +++ b/Payload_Type/apollo/apollo/mythic/agent_functions/builder.py @@ -184,7 +184,7 @@ async def build(self) -> BuildResponse: stderr=asyncio.subprocess.PIPE) stdout, stderr = await proc.communicate() - command = "{} {}".format(donutPath, output_path) + command = "{} -i {}".format(donutPath, output_path) # need to go through one more step to turn our exe into shellcode proc = await asyncio.create_subprocess_shell(command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,