From c222eff5de8bf4f79679cd376f49d0eb400ac86e Mon Sep 17 00:00:00 2001 From: its-a-feature Date: Wed, 10 Jan 2024 19:04:39 -0600 Subject: [PATCH] v0.4.1 --- CHANGELOG.md | 4 ++-- mythic_container/MythicCommandBase.py | 1 - mythic_container/__init__.py | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dfc6e0..8abef64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ -## [v0.4.0] - 2024-01-10 +## [v0.4.1] - 2024-01-10 ### Changed - Added a new optional `on_new_callback` function to the PayloadType class - This allows you to take additional actions on a new callback based on your payload type - Added new MythicRPC* functions for searching edges associated with a callback and for creating new tasks for a callback -- Needs Mythic v3.2.12+ +- Needs Mythic v3.2.12+ to leverage new functionality ## [v0.3.6] - 2023-12-22 diff --git a/mythic_container/MythicCommandBase.py b/mythic_container/MythicCommandBase.py index 7fe5aaa..1e6be6d 100644 --- a/mythic_container/MythicCommandBase.py +++ b/mythic_container/MythicCommandBase.py @@ -1674,7 +1674,6 @@ class PTOnNewCallbackAllData: Functions: to_json(self): return dictionary form of class """ - args: TaskArguments def __init__(self, callback: dict = {}, diff --git a/mythic_container/__init__.py b/mythic_container/__init__.py index 45c88f1..8d09587 100644 --- a/mythic_container/__init__.py +++ b/mythic_container/__init__.py @@ -1,9 +1,9 @@ from .rabbitmq import rabbitmqConnectionClass from .mythic_service import start_and_run_forever, test_command -containerVersion = "v1.2.0" +containerVersion = "v1.1.2" -PyPi_version = "0.4.0" +PyPi_version = "0.4.1" RabbitmqConnection = rabbitmqConnectionClass() diff --git a/setup.py b/setup.py index 7e9895d..128f09b 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # This call to setup() does all the work setup( name="mythic_container", - version="0.4.0", + version="0.4.1", description="Functionality for Mythic Services", long_description=README, long_description_content_type="text/markdown",