diff --git a/Payload_Type/poseidon/poseidon/agent_code/CHANGELOG.MD b/Payload_Type/poseidon/poseidon/agent_code/CHANGELOG.MD index 8fdd77b..34993f9 100644 --- a/Payload_Type/poseidon/poseidon/agent_code/CHANGELOG.MD +++ b/Payload_Type/poseidon/poseidon/agent_code/CHANGELOG.MD @@ -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.1.13 - 2024-11-27 + +### Changed + +- Updated the egress order to include httpx + ## 2.1.12 - 2024-11-26 ### Changed diff --git a/Payload_Type/poseidon/poseidon/agentfunctions/builder.go b/Payload_Type/poseidon/poseidon/agentfunctions/builder.go index d1e2a98..f4b4409 100644 --- a/Payload_Type/poseidon/poseidon/agentfunctions/builder.go +++ b/Payload_Type/poseidon/poseidon/agentfunctions/builder.go @@ -20,7 +20,7 @@ import ( "time" ) -const version = "2.1.11" +const version = "2.1.13" type sleepInfoStruct struct { Interval int `json:"interval"` @@ -82,7 +82,7 @@ var payloadDefinition = agentstructs.PayloadType{ Description: "Prioritize the order in which egress connections are made (if including multiple egress c2 profiles)", Required: false, ParameterType: agentstructs.BUILD_PARAMETER_TYPE_ARRAY, - DefaultValue: []string{"http", "websocket", "dynamichttp"}, + DefaultValue: []string{"http", "websocket", "dynamichttp", "httpx"}, }, { Name: "egress_failover",