Skip to content

Commit ef5d6c2

Browse files
committed
updating MythicContainer package
1 parent 1ef892a commit ef5d6c2

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

Payload_Type/poseidon/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.23.3
77
//replace github.com/MythicMeta/MythicContainer => ../../../../MythicMeta/MythicContainer
88

99
require (
10-
github.com/MythicMeta/MythicContainer v1.4.18
10+
github.com/MythicMeta/MythicContainer v1.4.19
1111
github.com/google/uuid v1.6.0
1212
github.com/mitchellh/mapstructure v1.5.0
1313
github.com/pelletier/go-toml v1.9.5

Payload_Type/poseidon/go.sum

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
github.com/MythicMeta/MythicContainer v1.4.17/go.mod h1:BnUYftqQ9KsGxBd6RlyRcAHBrqV1CUcrRCjktWwc2Do=
2-
github.com/MythicMeta/MythicContainer v1.4.18 h1:6P/iRTOYywEz8icFtBJ/2SWD6VKKCbA5CB9oKXQ5HB8=
3-
github.com/MythicMeta/MythicContainer v1.4.18/go.mod h1:BnUYftqQ9KsGxBd6RlyRcAHBrqV1CUcrRCjktWwc2Do=
1+
github.com/MythicMeta/MythicContainer v1.4.19/go.mod h1:BnUYftqQ9KsGxBd6RlyRcAHBrqV1CUcrRCjktWwc2Do=
42
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
53
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
64
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=

Payload_Type/poseidon/poseidon/agent_code/CHANGELOG.MD

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

7+
## 2.2.4 - 2025-03-12
8+
9+
### Changed
10+
11+
- Updated MythicContainer version to v1.4.19
12+
- Added default value for lsopen args
13+
714
## 2.2.3 - 2025-03-05
815

916
### Changed

Payload_Type/poseidon/poseidon/agent_code/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ run_http:
110110
run_tcp:
111111
./${BINARY_NAME}_${C2_TCP}
112112

113+
run_websocket:
114+
./${BINARY_NAME}_${C2_WEBSOCKET}.bin
115+
113116
run_dynamichttp:
114117
./${BINARY_NAME}_${C2_DYNAMICHTTP}.bin
115118

@@ -127,6 +130,8 @@ build_and_run_dynamichttp: build_dynamichttp run_dynamichttp
127130

128131
build_and_run_websocket_http: build_websocket_http run_websocket_http
129132

133+
build_and_run_websocket: build_websocket run_websocket
134+
130135
build_and_run_httpx: build_httpx run_httpx
131136

132137
build_all: build_http build_tcp build_websocket

Payload_Type/poseidon/poseidon/agentfunctions/builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"time"
2121
)
2222

23-
const version = "2.2.3"
23+
const version = "2.2.4"
2424

2525
type sleepInfoStruct struct {
2626
Interval int `json:"interval"`

Payload_Type/poseidon/poseidon/agentfunctions/lsopen.go

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ func init() {
4040
Name: "appArgs",
4141
ParameterType: agentstructs.COMMAND_PARAMETER_TYPE_ARRAY,
4242
Description: "Arguments to pass to application/binary",
43+
DefaultValue: []string{},
4344
ParameterGroupInformation: []agentstructs.ParameterGroupInfo{
4445
{
4546
ParameterIsRequired: false,

0 commit comments

Comments
 (0)