Skip to content

Commit 6531746

Browse files
committed
updating egress order to include httpx
1 parent 8b78b5a commit 6531746

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
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.1.13 - 2024-11-27
8+
9+
### Changed
10+
11+
- Updated the egress order to include httpx
12+
713
## 2.1.12 - 2024-11-26
814

915
### Changed

Payload_Type/poseidon/poseidon/agentfunctions/builder.go

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

23-
const version = "2.1.11"
23+
const version = "2.1.13"
2424

2525
type sleepInfoStruct struct {
2626
Interval int `json:"interval"`
@@ -82,7 +82,7 @@ var payloadDefinition = agentstructs.PayloadType{
8282
Description: "Prioritize the order in which egress connections are made (if including multiple egress c2 profiles)",
8383
Required: false,
8484
ParameterType: agentstructs.BUILD_PARAMETER_TYPE_ARRAY,
85-
DefaultValue: []string{"http", "websocket", "dynamichttp"},
85+
DefaultValue: []string{"http", "websocket", "dynamichttp", "httpx"},
8686
},
8787
{
8888
Name: "egress_failover",

0 commit comments

Comments
 (0)