Skip to content

Commit

Permalink
updating egress order to include httpx
Browse files Browse the repository at this point in the history
  • Loading branch information
its-a-feature committed Nov 27, 2024
1 parent 8b78b5a commit 6531746
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 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.1.13 - 2024-11-27

### Changed

- Updated the egress order to include httpx

## 2.1.12 - 2024-11-26

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Payload_Type/poseidon/poseidon/agentfunctions/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"time"
)

const version = "2.1.11"
const version = "2.1.13"

type sleepInfoStruct struct {
Interval int `json:"interval"`
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 6531746

Please sign in to comment.