Skip to content

Commit

Permalink
v2.0.35
Browse files Browse the repository at this point in the history
Fixing poseidon_tcp configuration issue
  • Loading branch information
its-a-feature committed Apr 11, 2024
1 parent 61ecdf5 commit f75a043
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Payload_Type/poseidon/poseidon/agent_code/CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.0.35 - 2024-04-11

### Changed

- Fixed an issue with poseidon_tcp values not getting stamped in correctly during compile time due to bad variable name

## 2.0.34 - 2024-04-09

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

// All variables must be a string so they can be set with ldflags
var tcp_initial_config string
var poseidon_tcp_initial_config string

type TCPInitialConfig struct {
Port uint `json:"port"`
Expand All @@ -49,7 +49,7 @@ type C2PoseidonTCP struct {
}

func init() {
initialConfigBytes, err := base64.StdEncoding.DecodeString(tcp_initial_config)
initialConfigBytes, err := base64.StdEncoding.DecodeString(poseidon_tcp_initial_config)
if err != nil {
utils.PrintDebug(fmt.Sprintf("error trying to decode initial poseidon tcp config, exiting: %v\n", err))
os.Exit(1)
Expand Down
2 changes: 1 addition & 1 deletion Payload_Type/poseidon/poseidon/agentfunctions/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"strings"
)

const version = "2.0.34"
const version = "2.0.35"

var payloadDefinition = agentstructs.PayloadType{
Name: "poseidon",
Expand Down
2 changes: 1 addition & 1 deletion agent_capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"architectures": ["x86_64", "arm_64"],
"c2": ["http", "websocket", "dynamichttp", "poseidon_tcp"],
"mythic_version": "3.2.20-rc7",
"agent_version": "2.0.34",
"agent_version": "2.0.35",
"supported_wrappers": []
}

0 comments on commit f75a043

Please sign in to comment.