Skip to content

Commit 319a715

Browse files
committed
fixing regression with screenshots added to file browser
1 parent ce5057e commit 319a715

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.MD

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.3.1-rc19] - 2024-11-1
8+
9+
### Changed
10+
11+
- Updated the file download process to only add to the file browser if data is not a screenshot
12+
713
## [3.3.1-rc18] - 2024-10-28
814

915
### Changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.1-rc18
1+
3.3.1-rc19

mythic-docker/src/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.1-rc18
1+
3.3.1-rc19

mythic-docker/src/rabbitmq/util_agent_message_actions_post_response.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,9 @@ func handleAgentMessagePostResponseDownload(task databaseStructs.Task, agentResp
11731173
return "", err
11741174
} else {
11751175
go EmitFileLog(fileMeta.ID)
1176-
go addFileMetaToMythicTree(task, fileMeta)
1176+
if !fileMeta.IsScreenshot {
1177+
go addFileMetaToMythicTree(task, fileMeta)
1178+
}
11771179
// handle the case where the agent sends a chunk along with the registration information
11781180
return handleAgentMessageWriteDownloadChunkToLocalDisk(task, fileMeta, agentResponse)
11791181
//return fileMeta.AgentFileID, nil

0 commit comments

Comments
 (0)