diff --git a/CHANGELOG.MD b/CHANGELOG.MD index bad76e05..c891a461 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.3.1-rc43] - 2025-02-14 + +### Changed + +- Fixed a bug when downloading 0 byte files that would cause a crash when sending eventing notifications + ## [3.3.1-rc42] - 2025-02-10 ### Changed diff --git a/VERSION b/VERSION index bde20b62..edb33eb7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.1-rc42 \ No newline at end of file +3.3.1-rc43 \ No newline at end of file diff --git a/mythic-docker/src/VERSION b/mythic-docker/src/VERSION index bde20b62..edb33eb7 100644 --- a/mythic-docker/src/VERSION +++ b/mythic-docker/src/VERSION @@ -1 +1 @@ -3.3.1-rc42 \ No newline at end of file +3.3.1-rc43 \ No newline at end of file diff --git a/mythic-docker/src/rabbitmq/util_agent_message_actions_post_response.go b/mythic-docker/src/rabbitmq/util_agent_message_actions_post_response.go index 63b2985e..d6ad20c3 100644 --- a/mythic-docker/src/rabbitmq/util_agent_message_actions_post_response.go +++ b/mythic-docker/src/rabbitmq/util_agent_message_actions_post_response.go @@ -551,7 +551,7 @@ func handleAgentMessagePostResponse(incoming *map[string]interface{}, uUIDInfo * EventingChannel <- EventNotification{ Trigger: trigger, OperationID: file.OperationID, - OperatorID: file.Task.OperatorID, + OperatorID: file.OperatorID, FileMetaID: file.ID, } }(fileMeta)