diff --git a/CHANGELOG.MD b/CHANGELOG.MD index c891a461..92f5ebc3 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-rc44] - 2025-02-18 + +### Changed + +- Fixed a trailing comma in a SQL query that broke creating files based on payload uuid + ## [3.3.1-rc43] - 2025-02-14 ### Changed diff --git a/VERSION b/VERSION index edb33eb7..b99fc89e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.1-rc43 \ No newline at end of file +3.3.1-rc44 \ No newline at end of file diff --git a/mythic-docker/src/VERSION b/mythic-docker/src/VERSION index edb33eb7..b99fc89e 100644 --- a/mythic-docker/src/VERSION +++ b/mythic-docker/src/VERSION @@ -1 +1 @@ -3.3.1-rc43 \ No newline at end of file +3.3.1-rc44 \ No newline at end of file diff --git a/mythic-docker/src/rabbitmq/recv_mythic_rpc_file_create.go b/mythic-docker/src/rabbitmq/recv_mythic_rpc_file_create.go index ab83f6f4..954dd850 100644 --- a/mythic-docker/src/rabbitmq/recv_mythic_rpc_file_create.go +++ b/mythic-docker/src/rabbitmq/recv_mythic_rpc_file_create.go @@ -104,6 +104,7 @@ func MythicRPCFileCreate(input MythicRPCFileCreateMessage) MythicRPCFileCreateMe WHERE task.id=$1`, input.TaskID) if err != nil { + logging.LogError(err, "failed to fetch task") response.Error = "Must supply a valid task ID" return response } @@ -129,6 +130,7 @@ func MythicRPCFileCreate(input MythicRPCFileCreateMessage) MythicRPCFileCreateMe WHERE payload.uuid=$1`, input.PayloadUUID) if err != nil { + logging.LogError(err, "failed to fetch payload uuid") response.Error = "Must supply a valid payload UUID" return response } @@ -154,6 +156,7 @@ func MythicRPCFileCreate(input MythicRPCFileCreateMessage) MythicRPCFileCreateMe WHERE callback.agent_callback_id=$1`, input.AgentCallbackID) if err != nil { + logging.LogError(err, "failed to find agent callback id") response.Error = "Must supply a valid agent callback id" return response }