diff --git a/Example_Translator/Dockerfile b/Example_Translator/Dockerfile index b0773083..c222b404 100644 --- a/Example_Translator/Dockerfile +++ b/Example_Translator/Dockerfile @@ -1 +1 @@ -FROM itsafeaturemythic/python38_translator_container:0.0.3 \ No newline at end of file +FROM itsafeaturemythic/python38_translator_container:0.0.4 \ No newline at end of file diff --git a/Example_Translator/mythic/c2_functions/C2_RPC_functions.py b/Example_Translator/mythic/c2_functions/C2_RPC_functions.py index 2f17749e..741f9c48 100644 --- a/Example_Translator/mythic/c2_functions/C2_RPC_functions.py +++ b/Example_Translator/mythic/c2_functions/C2_RPC_functions.py @@ -6,7 +6,7 @@ import sys # If the associated C2Profile has `mythic_encrypts` set to False, then this function should also decrypt # the message # request will be JSON with the following format: -# { "action": "translate_from_c2_format", +# { # "enc_key": None or base64 of key if Mythic knows of one, # "dec_key": None or base64 of key if Mythic knows of one, # "uuid": uuid of the message, @@ -30,7 +30,7 @@ async def translate_from_c2_format(request) -> dict: # If the associated C2Profile has `mythic_encrypts` set to False, then this function should also encrypt # the message # request will be JSON with the following format: -# { "action": "translate_to_c2_format", +# { # "enc_key": None or base64 of key if Mythic knows of one, # "dec_key": None or base64 of key if Mythic knows of one, # "uuid": uuid of the message, diff --git a/Example_Translator/mythic/mythic_service.py b/Example_Translator/mythic/mythic_service.py index 65184021..6125714e 100755 --- a/Example_Translator/mythic/mythic_service.py +++ b/Example_Translator/mythic/mythic_service.py @@ -1,3 +1,3 @@ #!/usr/bin/env python3 from mythic_translator_container import mythic_service -mythic_service.start_service_and_heartbeat(debug=True) +mythic_service.start_service_and_heartbeat()