Skip to content

Commit bd174cf

Browse files
committed
fixing sleep loading
1 parent e78c8a7 commit bd174cf

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Payload_Type/apollo/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](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v2.3.3] - 2025-02-28
8+
9+
### Changed
10+
11+
- Removed unnecessary make_token reference from sleep
12+
713
## [v2.3.2] - 2025-02-25
814

915
### Changed

Payload_Type/apollo/apollo/agent_code/Tasks/sleep.cs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
using ApolloInterop.Interfaces;
1111
using ApolloInterop.Structs.MythicStructs;
1212
using System.Runtime.Serialization;
13-
using static Tasks.make_token;
1413

1514
namespace Tasks
1615
{

Payload_Type/apollo/apollo/mythic/agent_functions/builder.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ class Apollo(PayloadType):
2121
supported_os = [
2222
SupportedOS.Windows
2323
]
24-
version = "2.3.2"
24+
version = "2.3.3"
2525
wrapper = False
2626
wrapped_payloads = ["scarecrow_wrapper", "service_wrapper"]
2727
note = """
2828
A fully featured .NET 4.0 compatible training agent. Version: {}.
2929
NOTE: P2P Not compatible with v2.2 agents!
30-
NOTE: v2.3.2 has a different bof loader than 2.3.1 and are incompatible since their arguments are different
30+
NOTE: v2.3.2+ has a different bof loader than 2.3.1 and are incompatible since their arguments are different
3131
""".format(version)
3232
supports_dynamic_loading = True
3333
shellcode_format_options = ["Binary", "Base64", "C", "Ruby", "Python", "Powershell", "C#", "Hex"]

0 commit comments

Comments
 (0)