Skip to content

Commit

Permalink
Merge pull request #75 from MythicAgents/dev
Browse files Browse the repository at this point in the history
Language Localization
  • Loading branch information
djhohnstein authored Feb 2, 2022
2 parents 2c8cd9d + 1dcd58d commit ac11833
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Payload_Type/apollo/agent_code/Apollo/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public static class Config
public static string StagingRSAPrivateKey = "LbFpMoimB+aLx1pq0IqXJ1MQ4KIiGdp0LWju5jUhZRg=";
#endif
#if HTTP
public static string PayloadUUID = "704f7dac-6122-4964-aebe-1100743dffbb";
public static string PayloadUUID = "d3c67157-6842-41eb-bb16-d0eb79c207f7";
#elif SMB
public static string PayloadUUID = "869c4909-30eb-4a90-99b2-874dae07a0a8";
#elif TCP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public AsyncNamedPipeServer(string pipename, PipeSecurity ps = null, int instanc
{
_pipeSecurity = new PipeSecurity();
PipeAccessRule multipleInstances = new PipeAccessRule(WindowsIdentity.GetCurrent().Name, PipeAccessRights.CreateNewInstance, AccessControlType.Allow);
PipeAccessRule everyoneAllowedRule = new PipeAccessRule("Everyone", PipeAccessRights.ReadWrite, AccessControlType.Allow);
PipeAccessRule networkAllowRule = new PipeAccessRule("Network", PipeAccessRights.ReadWrite, AccessControlType.Allow);
PipeAccessRule everyoneAllowedRule = new PipeAccessRule(new SecurityIdentifier(WellKnownSidType.WorldSid, null), PipeAccessRights.ReadWrite, AccessControlType.Allow);
PipeAccessRule networkAllowRule = new PipeAccessRule(new SecurityIdentifier(WellKnownSidType.NetworkSid, null), PipeAccessRights.ReadWrite, AccessControlType.Allow);
_pipeSecurity.AddAccessRule(multipleInstances);
_pipeSecurity.AddAccessRule(everyoneAllowedRule);
_pipeSecurity.AddAccessRule(networkAllowRule);
Expand Down
2 changes: 1 addition & 1 deletion Payload_Type/apollo/mythic/agent_functions/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Apollo(PayloadType):
supported_os = [
SupportedOS.Windows
]
version = "2.0.1"
version = "2.0.2"
wrapper = False
wrapped_payloads = ["service_wrapper"]
note = """
Expand Down

0 comments on commit ac11833

Please sign in to comment.