Commit ef5d6c2 1 parent 1ef892a commit ef5d6c2 Copy full SHA for ef5d6c2
File tree 6 files changed +16
-5
lines changed
6 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ toolchain go1.23.3
7
7
// replace github.com/MythicMeta/MythicContainer => ../../../../MythicMeta/MythicContainer
8
8
9
9
require (
10
- github.com/MythicMeta/MythicContainer v1.4.18
10
+ github.com/MythicMeta/MythicContainer v1.4.19
11
11
github.com/google/uuid v1.6.0
12
12
github.com/mitchellh/mapstructure v1.5.0
13
13
github.com/pelletier/go-toml v1.9.5
Original file line number Diff line number Diff line change 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 =
4
2
github.com/coreos/go-systemd/v22 v22.5.0 /go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc =
5
3
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
6
4
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM =
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
14
## 2.2.3 - 2025-03-05
8
15
9
16
### Changed
Original file line number Diff line number Diff line change @@ -110,6 +110,9 @@ run_http:
110
110
run_tcp :
111
111
./${BINARY_NAME} _${C2_TCP}
112
112
113
+ run_websocket :
114
+ ./${BINARY_NAME} _${C2_WEBSOCKET} .bin
115
+
113
116
run_dynamichttp :
114
117
./${BINARY_NAME} _${C2_DYNAMICHTTP} .bin
115
118
@@ -127,6 +130,8 @@ build_and_run_dynamichttp: build_dynamichttp run_dynamichttp
127
130
128
131
build_and_run_websocket_http : build_websocket_http run_websocket_http
129
132
133
+ build_and_run_websocket : build_websocket run_websocket
134
+
130
135
build_and_run_httpx : build_httpx run_httpx
131
136
132
137
build_all : build_http build_tcp build_websocket
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
20
20
"time"
21
21
)
22
22
23
- const version = "2.2.3 "
23
+ const version = "2.2.4 "
24
24
25
25
type sleepInfoStruct struct {
26
26
Interval int `json:"interval"`
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ func init() {
40
40
Name : "appArgs" ,
41
41
ParameterType : agentstructs .COMMAND_PARAMETER_TYPE_ARRAY ,
42
42
Description : "Arguments to pass to application/binary" ,
43
+ DefaultValue : []string {},
43
44
ParameterGroupInformation : []agentstructs.ParameterGroupInfo {
44
45
{
45
46
ParameterIsRequired : false ,
You can’t perform that action at this time.
0 commit comments