Skip to content

Commit f75a043

Browse files
committed
v2.0.35
Fixing poseidon_tcp configuration issue
1 parent 61ecdf5 commit f75a043

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Payload_Type/poseidon/poseidon/agent_code/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](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.0.35 - 2024-04-11
8+
9+
### Changed
10+
11+
- Fixed an issue with poseidon_tcp values not getting stamped in correctly during compile time due to bad variable name
12+
713
## 2.0.34 - 2024-04-09
814

915
### Changed

Payload_Type/poseidon/poseidon/agent_code/pkg/profiles/poseidon_tcp.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
// All variables must be a string so they can be set with ldflags
27-
var tcp_initial_config string
27+
var poseidon_tcp_initial_config string
2828

2929
type TCPInitialConfig struct {
3030
Port uint `json:"port"`
@@ -49,7 +49,7 @@ type C2PoseidonTCP struct {
4949
}
5050

5151
func init() {
52-
initialConfigBytes, err := base64.StdEncoding.DecodeString(tcp_initial_config)
52+
initialConfigBytes, err := base64.StdEncoding.DecodeString(poseidon_tcp_initial_config)
5353
if err != nil {
5454
utils.PrintDebug(fmt.Sprintf("error trying to decode initial poseidon tcp config, exiting: %v\n", err))
5555
os.Exit(1)

Payload_Type/poseidon/poseidon/agentfunctions/builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"strings"
2020
)
2121

22-
const version = "2.0.34"
22+
const version = "2.0.35"
2323

2424
var payloadDefinition = agentstructs.PayloadType{
2525
Name: "poseidon",

agent_capabilities.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"architectures": ["x86_64", "arm_64"],
1111
"c2": ["http", "websocket", "dynamichttp", "poseidon_tcp"],
1212
"mythic_version": "3.2.20-rc7",
13-
"agent_version": "2.0.34",
13+
"agent_version": "2.0.35",
1414
"supported_wrappers": []
1515
}

0 commit comments

Comments
 (0)