├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── docker.yml │ └── dotnet-desktop.yml ├── .gitignore ├── C2_Profiles └── .keep ├── Changelog.md ├── LICENSE ├── Payload_Type └── athena │ ├── .docker │ ├── Dockerfile │ └── requirements.txt │ ├── Dockerfile │ ├── agent.obfs │ ├── athena │ ├── agent_code │ │ ├── .editorconfig │ │ ├── Agent.Crypto.Aes │ │ │ ├── Agent.Crypto.Aes.csproj │ │ │ └── Crypto.cs │ │ ├── Agent.Crypto.None │ │ │ ├── Agent.Crypto.None.csproj │ │ │ └── Crypto.cs │ │ ├── Agent.Managers.Linux │ │ │ ├── Agent.Managers.Linux.csproj │ │ │ ├── Native.cs │ │ │ ├── ProcessSpawner.cs │ │ │ └── TokenManger.cs │ │ ├── Agent.Managers.Python │ │ │ ├── Agent.Managers.Python.csproj │ │ │ ├── ByteArrayMetaPathImporter.cs │ │ │ ├── CustomProvider.cs │ │ │ └── PythonManager.cs │ │ ├── Agent.Managers.Reflection │ │ │ ├── Agent.Managers.Reflection.csproj │ │ │ └── AssemblyManager.cs │ │ ├── Agent.Managers.Windows │ │ │ ├── Agent.Managers.Windows.csproj │ │ │ ├── Invoker │ │ │ │ ├── Data │ │ │ │ │ ├── Native.cs │ │ │ │ │ ├── PE.cs │ │ │ │ │ └── Win32.cs │ │ │ │ ├── Generic.cs │ │ │ │ ├── Native.cs │ │ │ │ └── Utilities.cs │ │ │ ├── Native.cs │ │ │ ├── ProcessSpawner.cs │ │ │ ├── Resolver.cs │ │ │ └── TokenManager.cs │ │ ├── Agent.Models │ │ │ ├── Agent.Models.csproj │ │ │ ├── Assembly │ │ │ │ ├── ExecuteAssemblyContext.cs │ │ │ │ ├── ExecuteAssemblyTask.cs │ │ │ │ └── LoadAssembly.cs │ │ │ ├── Commands │ │ │ │ ├── ConsoleWriter.cs │ │ │ │ ├── InteractiveMessageType.cs │ │ │ │ ├── LoadCommand.cs │ │ │ │ ├── SpawnOptions.cs │ │ │ │ ├── TaskEventArgs.cs │ │ │ │ └── Token.cs │ │ │ ├── Comms │ │ │ │ ├── Checkin │ │ │ │ │ ├── Checkin.cs │ │ │ │ │ └── CheckinResponse.cs │ │ │ │ ├── SMB │ │ │ │ │ ├── Edge.cs │ │ │ │ │ └── SmbMessage.cs │ │ │ │ └── Tasks │ │ │ │ │ ├── DelegateMessage.cs │ │ │ │ │ ├── GetTasking.cs │ │ │ │ │ ├── GetTaskingResponse.cs │ │ │ │ │ ├── InteractMessage.cs │ │ │ │ │ ├── ServerJob.cs │ │ │ │ │ └── ServerTask.cs │ │ │ ├── Interfaces │ │ │ │ ├── IAgent.cs │ │ │ │ ├── IAgentConfig.cs │ │ │ │ ├── IAgentMod.cs │ │ │ │ ├── IAssemblyManager.cs │ │ │ │ ├── ICryptoManager.cs │ │ │ │ ├── IFilePlugin.cs │ │ │ │ ├── IForwarderPlugin.cs │ │ │ │ ├── IInteractivePlugin.cs │ │ │ │ ├── ILogger.cs │ │ │ │ ├── IMessageManager.cs │ │ │ │ ├── IPlugin.cs │ │ │ │ ├── IProfile.cs │ │ │ │ ├── IProxyPlugin.cs │ │ │ │ ├── IPythonManager.cs │ │ │ │ ├── ISpawner.cs │ │ │ │ ├── ITaskManager.cs │ │ │ │ └── ITokenManager.cs │ │ │ ├── Proxy │ │ │ │ ├── ConnectResponse.cs │ │ │ │ ├── ConnectionOptions.cs │ │ │ │ ├── DatagramSource.cs │ │ │ │ ├── Enums.cs │ │ │ │ └── ServerDatagram.cs │ │ │ ├── Responses │ │ │ │ ├── DownloadTaskResponse.cs │ │ │ │ ├── EdgeResponse.cs │ │ │ │ ├── FileBrowserTaskResponse.cs │ │ │ │ ├── FileDeletedTaskResponse.cs │ │ │ │ ├── KeyPressTaskResponse.cs │ │ │ │ ├── LoadTaskResponse.cs │ │ │ │ ├── ProcessTaskResponse.cs │ │ │ │ ├── TaskResponse.cs │ │ │ │ ├── TokenTaskResponse.cs │ │ │ │ └── UploadTaskResponse.cs │ │ │ └── Utlities │ │ │ │ └── Misc.cs │ │ ├── Agent.Profiles.DebugProfile │ │ │ ├── Agent.Profiles.DebugProfile.csproj │ │ │ └── DebugProfile.cs │ │ ├── Agent.Profiles.Discord │ │ │ ├── Agent.Profiles.Discord.csproj │ │ │ ├── Base.txt │ │ │ ├── DiscordProfile.cs │ │ │ └── MessageWrapper.cs │ │ ├── Agent.Profiles.GitHub │ │ │ ├── Agent.Profiles.GitHub.csproj │ │ │ ├── Base.txt │ │ │ └── GitHubProfile.cs │ │ ├── Agent.Profiles.Http │ │ │ ├── Agent.Profiles.Http.csproj │ │ │ ├── Base.txt │ │ │ ├── HttpProfile.cs │ │ │ └── obfuscar.xml │ │ ├── Agent.Profiles.Smb │ │ │ ├── Agent.Profiles.Smb.csproj │ │ │ ├── Base.txt │ │ │ ├── MessageReceivedArgs.cs │ │ │ └── SmbProfile.cs │ │ ├── Agent.Profiles.Websocket │ │ │ ├── Agent.Profiles.Websocket.csproj │ │ │ ├── Base.txt │ │ │ ├── MessageReceivedArgs.cs │ │ │ ├── WebSocketMessage.cs │ │ │ └── WebsocketProfile.cs │ │ ├── Agent.sln │ │ ├── AgentPlugins.sln │ │ ├── AthenaCore │ │ │ ├── AthenaCore.cs │ │ │ ├── AthenaCore.csproj │ │ │ ├── Config │ │ │ │ ├── AgentConfig.cs │ │ │ │ ├── ContainerBuilder.cs │ │ │ │ └── ContainerProvider.cs │ │ │ ├── Managers │ │ │ │ ├── LogManager.cs │ │ │ │ ├── MessageManager.cs │ │ │ │ └── TaskManager.cs │ │ │ ├── Program.cs │ │ │ ├── Roots.xml │ │ │ └── Worker.cs │ │ ├── Tests │ │ │ ├── Agent.Tests.Defender │ │ │ │ ├── Agent.Tests.Defender.csproj │ │ │ │ ├── DefenderTests │ │ │ │ │ ├── AmsiTests.cs │ │ │ │ │ ├── Checker │ │ │ │ │ │ ├── Checkers │ │ │ │ │ │ │ ├── AmsiScanner.cs │ │ │ │ │ │ │ └── DefenderScanner.cs │ │ │ │ │ │ ├── Core │ │ │ │ │ │ │ ├── CustomConsole.cs │ │ │ │ │ │ │ ├── Helpers.cs │ │ │ │ │ │ │ └── Scanner.cs │ │ │ │ │ │ └── PInvoke │ │ │ │ │ │ │ └── NativeMethods.cs │ │ │ │ │ └── DefenderTests.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── PluginLoader.cs │ │ │ │ └── UnitTest1.cs │ │ │ └── Agent.Tests │ │ │ │ ├── Agent.Tests.csproj │ │ │ │ ├── AgentTests │ │ │ │ ├── CheckinTests.cs │ │ │ │ └── TaskingTests.cs │ │ │ │ ├── AssemblyTests │ │ │ │ └── AssemblyHandlingTests.cs │ │ │ │ ├── EncryptionTests │ │ │ │ └── AesCryptoTests.cs │ │ │ │ ├── PluginLoader.cs │ │ │ │ ├── PluginTests │ │ │ │ ├── CatTests.cs │ │ │ │ ├── ConfigTest.cs │ │ │ │ ├── DownloadTests.cs │ │ │ │ ├── LsTests.cs │ │ │ │ ├── PythonTests.cs │ │ │ │ ├── RegTests.cs │ │ │ │ ├── SmbPluginTests.cs │ │ │ │ ├── TailTests.cs │ │ │ │ ├── UploadTests.cs │ │ │ │ └── ZipTests.cs │ │ │ │ ├── ProfileTests │ │ │ │ ├── HttpProfileTests.cs │ │ │ │ ├── SmbProfileTests.cs │ │ │ │ └── WebsocketProfileTests.cs │ │ │ │ ├── TestClasses │ │ │ │ ├── TestAgent.cs │ │ │ │ ├── TestAgentConfig.cs │ │ │ │ ├── TestAgentMod.cs │ │ │ │ ├── TestAssemblyManager.cs │ │ │ │ ├── TestCryptoManager.cs │ │ │ │ ├── TestFilePlugin.cs │ │ │ │ ├── TestForwarderPlugin.cs │ │ │ │ ├── TestLogger.cs │ │ │ │ ├── TestMessageManager.cs │ │ │ │ ├── TestPlugin.cs │ │ │ │ ├── TestProfile.cs │ │ │ │ ├── TestProxyPlugin.cs │ │ │ │ ├── TestSpawner.cs │ │ │ │ ├── TestTaskManager.cs │ │ │ │ └── TestTokenManager.cs │ │ │ │ ├── UnitTest1.cs │ │ │ │ ├── Usings.cs │ │ │ │ ├── Utilities.cs │ │ │ │ └── python313.zip │ │ ├── arp │ │ │ ├── IPNetwork │ │ │ │ ├── BigIntegerExtensions.cs │ │ │ │ ├── CidrClassFull.cs │ │ │ │ ├── CidrClassLess.cs │ │ │ │ ├── CidrGuess.cs │ │ │ │ ├── ICidrGuess.cs │ │ │ │ ├── IPAddressCollection.cs │ │ │ │ ├── IPNetwork.cs │ │ │ │ └── IPNetworkCollection.cs │ │ │ ├── arp.cs │ │ │ └── arp.csproj │ │ ├── bin │ │ │ ├── .keep │ │ │ ├── common │ │ │ │ └── .keep │ │ │ ├── linux │ │ │ │ └── .keep │ │ │ ├── macos │ │ │ │ └── .keep │ │ │ └── windows │ │ │ │ └── .keep │ │ ├── build_utils.py │ │ ├── caffeinate │ │ │ ├── caffeinate.cs │ │ │ └── caffeinate.csproj │ │ ├── cat │ │ │ ├── cat.cs │ │ │ └── cat.csproj │ │ ├── cd │ │ │ ├── cd.cs │ │ │ └── cd.csproj │ │ ├── coff │ │ │ ├── coff.cs │ │ │ ├── coff.csproj │ │ │ └── coff │ │ │ │ ├── BofRunner.cs │ │ │ │ ├── Coff.cs │ │ │ │ ├── IAT.cs │ │ │ │ ├── ImageParts.cs │ │ │ │ ├── NativeDeclarations.cs │ │ │ │ └── beacon_funcs.x64.o │ │ ├── config │ │ │ ├── ConfigUpdateArgs.cs │ │ │ ├── config.cs │ │ │ └── config.csproj │ │ ├── cp │ │ │ ├── CopyArgs.cs │ │ │ ├── cp.cs │ │ │ └── cp.csproj │ │ ├── crop │ │ │ ├── Config.cs │ │ │ ├── crop.cs │ │ │ ├── crop.csproj │ │ │ └── crophelper.cs │ │ ├── cursed │ │ │ ├── Finders │ │ │ │ ├── ChromeFinder.cs │ │ │ │ ├── EdgeFinder.cs │ │ │ │ ├── IFinder.cs │ │ │ │ └── ManualFinder.cs │ │ │ ├── Models │ │ │ │ ├── ChromeJsonObject.cs │ │ │ │ ├── CursedArgs.cs │ │ │ │ ├── DebugEvaluator.cs │ │ │ │ ├── ExtensionManifest.cs │ │ │ │ └── RuntimeEvaluator.cs │ │ │ ├── Utilities │ │ │ │ ├── CommandParser.cs │ │ │ │ ├── CursedConfig.cs │ │ │ │ ├── DebugHelper.cs │ │ │ │ └── WebSocketHelper.cs │ │ │ ├── cursed.cs │ │ │ └── cursed.csproj │ │ ├── download │ │ │ ├── DownloadArgs.cs │ │ │ ├── download.cs │ │ │ └── download.csproj │ │ ├── drives │ │ │ ├── drives.cs │ │ │ └── drives.csproj │ │ ├── ds │ │ │ ├── DsArgs.cs │ │ │ ├── ds.cs │ │ │ └── ds.csproj │ │ ├── echo │ │ │ ├── echo.cs │ │ │ └── echo.csproj │ │ ├── entitlements │ │ │ ├── Native.cs │ │ │ ├── entitlements.cs │ │ │ └── entitlements.csproj │ │ ├── env │ │ │ ├── env.cs │ │ │ └── env.csproj │ │ ├── exec │ │ │ ├── ExecArgs.cs │ │ │ ├── exec.cs │ │ │ └── exec.csproj │ │ ├── execute-assembly │ │ │ ├── ConsoleApplicationExecutor.cs │ │ │ ├── ExecuteAssemblyArgs.cs │ │ │ ├── execute-assembly.cs │ │ │ └── execute-assembly.csproj │ │ ├── execute-module │ │ │ ├── AthenaModule.cs │ │ │ ├── ExecModuleArgs.cs │ │ │ ├── execute-module.cs │ │ │ └── execute-module.csproj │ │ ├── exit │ │ │ ├── exit.cs │ │ │ └── exit.csproj │ │ ├── farmer │ │ │ ├── Crypto.cs │ │ │ ├── Farmer.cs │ │ │ ├── FarmerArgs.cs │ │ │ ├── farmer.csproj │ │ │ └── farmerplugin.cs │ │ ├── get-clipboard │ │ │ ├── get-clipboard.csproj │ │ │ └── getclipboard.cs │ │ ├── get-localgroup │ │ │ ├── GetLocalGroupArgs.cs │ │ │ ├── get-localgroup.cs │ │ │ └── get-localgroup.csproj │ │ ├── get-sessions │ │ │ ├── get-sessions.cs │ │ │ └── get-sessions.csproj │ │ ├── get-shares │ │ │ ├── get-shares.cs │ │ │ └── get-shares.csproj │ │ ├── hostname │ │ │ ├── hostname.cs │ │ │ └── hostname.csproj │ │ ├── http-server │ │ │ ├── HttpServerArgs.cs │ │ │ ├── http-server.cs │ │ │ └── http-server.csproj │ │ ├── ifconfig │ │ │ ├── ifconfig.cs │ │ │ └── ifconfig.csproj │ │ ├── inject-shellcode-linux │ │ │ ├── Models │ │ │ │ └── InjectArgs.cs │ │ │ ├── Ptrace.cs │ │ │ ├── inject-shellcode-linux.cs │ │ │ └── inject-shellcode-linux.csproj │ │ ├── inject-shellcode │ │ │ ├── API │ │ │ │ └── Native.cs │ │ │ ├── Models │ │ │ │ └── InjectArgs.cs │ │ │ ├── Techniques │ │ │ │ ├── AtomBomb.cs │ │ │ │ ├── ClassicInjection.cs │ │ │ │ ├── DeskEnum.cs │ │ │ │ ├── Hypno.cs │ │ │ │ ├── ITechnique.cs │ │ │ │ ├── MapViewOfSection.cs │ │ │ │ ├── TestInjector.cs │ │ │ │ └── ThreadHijack.cs │ │ │ ├── inject-shellcode.cs │ │ │ └── inject-shellcode.csproj │ │ ├── jobkill │ │ │ ├── jobkill.cs │ │ │ └── jobkill.csproj │ │ ├── jobs │ │ │ ├── jobs.cs │ │ │ └── jobs.csproj │ │ ├── jxa │ │ │ ├── JxaArgs.cs │ │ │ ├── Mono │ │ │ │ ├── AppleEvent.cs │ │ │ │ ├── AppleScript.cs │ │ │ │ ├── Carbon.cs │ │ │ │ ├── ComponentManager.cs │ │ │ │ ├── CoreFoundation.cs │ │ │ │ └── NavDialog.cs │ │ │ ├── Native.cs │ │ │ ├── ObjectiveC.cs │ │ │ ├── Program.cs │ │ │ ├── jxa.cs │ │ │ ├── jxa.csproj │ │ │ └── test.cs │ │ ├── keychain │ │ │ ├── Native.cs │ │ │ ├── keychain.cs │ │ │ └── keychain.csproj │ │ ├── keylogger │ │ │ ├── Native.cs │ │ │ ├── keylogger.cs │ │ │ └── keylogger.csproj │ │ ├── kill │ │ │ ├── KillArgs.cs │ │ │ ├── kill.cs │ │ │ └── kill.csproj │ │ ├── lnk │ │ │ ├── LnkArgs.cs │ │ │ ├── lnk.cs │ │ │ └── lnk.csproj │ │ ├── ls │ │ │ ├── LocalListing.cs │ │ │ ├── LsArgs.cs │ │ │ ├── LsUtilities.cs │ │ │ ├── RemoteListing.cs │ │ │ ├── UncParser.cs │ │ │ ├── ls.cs │ │ │ └── ls.csproj │ │ ├── mac_bundle.py │ │ ├── mkdir │ │ │ ├── mkdir.cs │ │ │ └── mkdir.csproj │ │ ├── mv │ │ │ ├── mv.cs │ │ │ └── mv.csproj │ │ ├── netstat │ │ │ ├── ManagedIpHelper.cs │ │ │ ├── netstat.cs │ │ │ └── netstat.csproj │ │ ├── nidhogg │ │ │ ├── NidhoggApi │ │ │ │ ├── Nidhogg.cs │ │ │ │ ├── NidhoggAntiAnalysis.cs │ │ │ │ ├── NidhoggFile.cs │ │ │ │ ├── NidhoggIoctls.cs │ │ │ │ ├── NidhoggMemory.cs │ │ │ │ ├── NidhoggNetwork.cs │ │ │ │ ├── NidhoggProcess.cs │ │ │ │ ├── NidhoggRegistry.cs │ │ │ │ ├── NidhoggStructs.cs │ │ │ │ └── NidhoggThread.cs │ │ │ ├── NidhoggArgs.cs │ │ │ ├── nidhogg.cs │ │ │ └── nidhogg.csproj │ │ ├── nslookup │ │ │ ├── NsLookupArgs.cs │ │ │ ├── nslookup.cs │ │ │ └── nslookup.csproj │ │ ├── port-bender │ │ │ ├── PortBenderArgs.cs │ │ │ ├── TcpForwarder.cs │ │ │ ├── TcpForwarderSlim.cs │ │ │ ├── port-bender.cs │ │ │ └── port-bender.csproj │ │ ├── ps │ │ │ ├── ProcessHelper.cs │ │ │ ├── PsArgs.cs │ │ │ ├── ps.cs │ │ │ └── ps.csproj │ │ ├── pwd │ │ │ ├── pwd.cs │ │ │ └── pwd.csproj │ │ ├── python-exec │ │ │ ├── PythonExecArgs.cs │ │ │ ├── lib.zip │ │ │ ├── python-exec.cs │ │ │ └── python-exec.csproj │ │ ├── python-load │ │ │ ├── PythonLoadArgs.cs │ │ │ ├── python-load.cs │ │ │ └── python-load.csproj │ │ ├── reg │ │ │ ├── RegArgs.cs │ │ │ ├── reg.cs │ │ │ └── reg.csproj │ │ ├── rm │ │ │ ├── RmArgs.cs │ │ │ ├── rm.cs │ │ │ └── rm.csproj │ │ ├── rportfwd │ │ │ ├── Client │ │ │ │ └── AsyncTcpClient.cs │ │ │ ├── Config │ │ │ │ └── ConnectionConfig.cs │ │ │ ├── Server │ │ │ │ └── AsyncTcpServer.cs │ │ │ ├── rportfwd.cs │ │ │ └── rportfwd.csproj │ │ ├── screenshot │ │ │ ├── ScreenshotArgs.cs │ │ │ ├── screenshot.cs │ │ │ └── screenshot.csproj │ │ ├── sftp │ │ │ ├── SftpArgs.cs │ │ │ ├── sftp.cs │ │ │ └── sftp.csproj │ │ ├── shell │ │ │ ├── ProcessRunner.cs │ │ │ ├── shell.cs │ │ │ └── shell.csproj │ │ ├── shellcode │ │ │ ├── ShellcodeArgs.cs │ │ │ ├── shellcode.cs │ │ │ └── shellcode.csproj │ │ ├── smb │ │ │ ├── SmbLink.cs │ │ │ ├── SmbLinkArgs.cs │ │ │ ├── smb.cs │ │ │ └── smb.csproj │ │ ├── socks │ │ │ ├── Nager.TcpClient │ │ │ │ ├── DataReceivedEventArgs.cs │ │ │ │ ├── TcpClient.cs │ │ │ │ ├── TcpClientConfig.cs │ │ │ │ ├── TcpClientKeepAliveConfig.cs │ │ │ │ ├── TcpClientKeepAliveExtension.cs │ │ │ │ └── UdpClient.cs │ │ │ ├── socks.cs │ │ │ └── socks.csproj │ │ ├── ssh │ │ │ ├── SshArgs.cs │ │ │ ├── ssh.cs │ │ │ └── ssh.csproj │ │ ├── tail │ │ │ ├── TailArgs.cs │ │ │ ├── tail.cs │ │ │ └── tail.csproj │ │ ├── test-port │ │ │ ├── test-port.cs │ │ │ └── test-port.csproj │ │ ├── timestomp │ │ │ ├── TimeStompArgs.cs │ │ │ ├── timestomp.cs │ │ │ └── timestomp.csproj │ │ ├── token │ │ │ ├── Native.cs │ │ │ ├── token.cs │ │ │ └── token.csproj │ │ ├── upload │ │ │ ├── UploadArgs.cs │ │ │ ├── upload.cs │ │ │ └── upload.csproj │ │ ├── uptime │ │ │ ├── uptime.cs │ │ │ └── uptime.csproj │ │ ├── wget │ │ │ ├── wget.cs │ │ │ └── wget.csproj │ │ ├── whoami │ │ │ ├── whoami.cs │ │ │ └── whoami.csproj │ │ ├── zip-dl │ │ │ ├── ZipDlArgs.cs │ │ │ ├── zip-dl.cs │ │ │ └── zip-dl.csproj │ │ ├── zip-inspect │ │ │ ├── ZipInspectArgs.cs │ │ │ ├── zip-inspect.cs │ │ │ └── zip-inspect.csproj │ │ └── zip │ │ │ ├── ZipArgs.cs │ │ │ ├── zip.cs │ │ │ └── zip.csproj │ └── mythic │ │ ├── __init__.py │ │ ├── agent_functions │ │ ├── __init__.py │ │ ├── arp.py │ │ ├── athena.svg │ │ ├── athena_utils │ │ │ ├── __init__.py │ │ │ ├── bof_utilities.py │ │ │ ├── mac_bundler.py │ │ │ ├── message_converter.py │ │ │ ├── message_utilities.py │ │ │ ├── mythicrpc_utilities.py │ │ │ └── plugin_utilities.py │ │ ├── builder.py │ │ ├── caffeinate.py │ │ ├── cat.py │ │ ├── cd.py │ │ ├── coff.py │ │ ├── config.py │ │ ├── cp.py │ │ ├── crop.py │ │ ├── cursed.py │ │ ├── download.py │ │ ├── drives.py │ │ ├── ds-connect.py │ │ ├── ds-query.py │ │ ├── ds.py │ │ ├── echo.py │ │ ├── env.py │ │ ├── exec.py │ │ ├── execute-assembly.py │ │ ├── execute-module.py │ │ ├── exit.py │ │ ├── farmer.py │ │ ├── get-clipboard.py │ │ ├── get-localgroup.py │ │ ├── get-sessions.py │ │ ├── get-shares.py │ │ ├── hostname.py │ │ ├── http-server.py │ │ ├── ifconfig.py │ │ ├── inject-assembly.py │ │ ├── inject-shellcode.py │ │ ├── jobkill.py │ │ ├── jobs.py │ │ ├── jxa.why │ │ ├── keychain.why │ │ ├── keylogger.py │ │ ├── kill.py │ │ ├── lnk.why │ │ ├── load-assembly.py │ │ ├── load.py │ │ ├── ls.py │ │ ├── misc_bofs │ │ │ ├── __init__.py │ │ │ ├── nanorubeus.py │ │ │ ├── nanorubeus │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── beacon.h │ │ │ │ │ ├── bofdefs.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── kerberoast.h │ │ │ │ │ ├── klist.h │ │ │ │ │ ├── krb5.h │ │ │ │ │ ├── luid.h │ │ │ │ │ ├── msasn1.h │ │ │ │ │ ├── ptt.h │ │ │ │ │ ├── purge.h │ │ │ │ │ ├── sessions.h │ │ │ │ │ └── tgtdeleg.h │ │ │ │ ├── nanorobeus.x64.o │ │ │ │ └── source │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── entry.c │ │ │ │ │ ├── kerberoast.c │ │ │ │ │ ├── klist.c │ │ │ │ │ ├── krb5.c │ │ │ │ │ ├── luid.c │ │ │ │ │ ├── ptt.c │ │ │ │ │ ├── purge.c │ │ │ │ │ ├── sessions.c │ │ │ │ │ └── tgtdeleg.c │ │ │ ├── patchit.py │ │ │ └── patchit │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── beacon.h │ │ │ │ └── patchit.c │ │ ├── mkdir.py │ │ ├── mv.py │ │ ├── netstat.py │ │ ├── nidhogg.py │ │ ├── nidhogg_commands │ │ │ ├── __init__.py │ │ │ ├── nidhogg_disableetweti.py │ │ │ ├── nidhogg_dumpcreds.py │ │ │ ├── nidhogg_elevateprocess.py │ │ │ ├── nidhogg_enableetwti.py │ │ │ ├── nidhogg_hidedriver.py │ │ │ ├── nidhogg_hidemodule.notcreatedyet │ │ │ ├── nidhogg_hideport.py │ │ │ ├── nidhogg_hideprocess.py │ │ │ ├── nidhogg_hideregistrykey.py │ │ │ ├── nidhogg_hideregistryvalue.py │ │ │ ├── nidhogg_hidethread.py │ │ │ ├── nidhogg_injectdll.py │ │ │ ├── nidhogg_protectfile.py │ │ │ ├── nidhogg_protectprocess.py │ │ │ ├── nidhogg_protectregistrykey.py │ │ │ ├── nidhogg_protectregistryvalue.py │ │ │ ├── nidhogg_protectthread.py │ │ │ ├── nidhogg_unhidedriver.py │ │ │ ├── nidhogg_unhidemodule.notcreatedyet │ │ │ ├── nidhogg_unhideport.py │ │ │ ├── nidhogg_unhideprocess.py │ │ │ ├── nidhogg_unhideregistrykey.py │ │ │ ├── nidhogg_unhideregistryvalue.py │ │ │ ├── nidhogg_unhidethread.py │ │ │ ├── nidhogg_unprotectfile.py │ │ │ ├── nidhogg_unprotectprocess.py │ │ │ ├── nidhogg_unprotectregistrykey.py │ │ │ ├── nidhogg_unprotectregistryvalue.py │ │ │ └── nidhogg_unprotectthread.py │ │ ├── nslookup.py │ │ ├── outflank_bofs │ │ │ ├── __init__.py │ │ │ ├── add-machine-account.py │ │ │ ├── add_machine_account │ │ │ │ ├── AddMachineAccount.c │ │ │ │ ├── AddMachineAccount.h │ │ │ │ ├── DelMachineAccount.c │ │ │ │ ├── GetMachineAccountQuota.c │ │ │ │ ├── Makefile │ │ │ │ └── beacon.h │ │ │ ├── ask-creds.py │ │ │ ├── ask_creds │ │ │ │ ├── Askcreds.c │ │ │ │ ├── Askcreds.h │ │ │ │ ├── Makefile │ │ │ │ └── beacon.h │ │ │ ├── delete-machine-account.py │ │ │ ├── get-machine-account-quota.py │ │ │ ├── kerberoast.py │ │ │ ├── kerberoast │ │ │ │ ├── Kerberoast.c │ │ │ │ ├── Kerberoast.h │ │ │ │ ├── Makefile │ │ │ │ ├── TicketToHashcat.py │ │ │ │ ├── beacon.h │ │ │ │ └── requirements.txt │ │ │ ├── klist.py │ │ │ └── klist │ │ │ │ ├── Klist.c │ │ │ │ ├── Klist.cna │ │ │ │ ├── Klist.h │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── beacon.h │ │ ├── port-bender.py │ │ ├── ps.py │ │ ├── pwd.py │ │ ├── python-exec.py │ │ ├── python-load.py │ │ ├── python.py.why │ │ ├── reg.py │ │ ├── rm.py │ │ ├── rportfwd.py │ │ ├── screenshot.py │ │ ├── sftp.py │ │ ├── shell.py │ │ ├── shellcode.py │ │ ├── smb.py │ │ ├── socks.py │ │ ├── ssh.py │ │ ├── tail.py │ │ ├── test-port.py │ │ ├── timestomp.py │ │ ├── token.py │ │ ├── trusted_sec_bofs │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── adcs-enum.py │ │ │ ├── adcs_enum │ │ │ │ ├── Makefile │ │ │ │ ├── adcs_enum.c │ │ │ │ ├── adcs_enum.h │ │ │ │ ├── certca.h │ │ │ │ ├── certenroll.h │ │ │ │ └── entry.c │ │ │ ├── common │ │ │ │ ├── anticrash.c │ │ │ │ ├── base.c │ │ │ │ ├── beacon.h │ │ │ │ ├── bofdefs.h │ │ │ │ ├── queue.c │ │ │ │ ├── stack.c │ │ │ │ ├── wmi.c │ │ │ │ └── wmi.h │ │ │ ├── driver-sigs.py │ │ │ ├── driversigs │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── get-password-policy.py │ │ │ ├── get_password_policy │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── net-view.py │ │ │ ├── netview │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── sc-enum.py │ │ │ ├── sc_enum │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── schtasks-enum.py │ │ │ ├── schtasks-query.py │ │ │ ├── schtasksenum │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── schtasksquery │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── vss-enum.py │ │ │ ├── vssenum │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── windowlist.py │ │ │ ├── windowlist │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── wmi-query.py │ │ │ └── wmi_query │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ ├── trusted_sec_remote_bofs │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── add-user-to-group.py │ │ │ ├── addusertogroup │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── common │ │ │ │ ├── anticrash.c │ │ │ │ ├── base.c │ │ │ │ ├── beacon.h │ │ │ │ ├── bofdefs.h │ │ │ │ ├── injection.c │ │ │ │ ├── ntdefs.h │ │ │ │ ├── queue.c │ │ │ │ ├── stack.c │ │ │ │ ├── wmi.c │ │ │ │ └── wmi.h │ │ │ ├── enable-user.py │ │ │ ├── enableuser │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── office-tokens.py │ │ │ ├── office_tokens │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── sc-config.py │ │ │ ├── sc-create.py │ │ │ ├── sc-delete.py │ │ │ ├── sc-start.py │ │ │ ├── sc-stop.py │ │ │ ├── sc_config │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── sc_create │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── sc_delete │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── sc_start │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── sc_stop │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── schtasks-create.py │ │ │ ├── schtasks-delete.py │ │ │ ├── schtasks-run.py │ │ │ ├── schtasks-stop.py │ │ │ ├── schtaskscreate │ │ │ │ ├── Makefile │ │ │ │ ├── entry.c │ │ │ │ └── test_task.xml │ │ │ ├── schtasksdelete │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── schtasksrun │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── schtasksstop │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ │ ├── set-user-pass.py │ │ │ └── setuserpass │ │ │ │ ├── Makefile │ │ │ │ └── entry.c │ │ ├── upload.py │ │ ├── uptime.py │ │ ├── whoami.py │ │ ├── zip-dl.py │ │ ├── zip-inspect.py │ │ └── zip.py │ │ └── browser_scripts │ │ ├── create_table.js │ │ ├── download.js │ │ ├── drives.js │ │ ├── ds.js │ │ ├── env.js │ │ ├── jobs.js │ │ ├── ls.js │ │ └── ps.js │ ├── common.obfs │ ├── main.py │ └── requirements.txt ├── README.md ├── agent_capabilities.json ├── agent_icons ├── .keep ├── athena.svg ├── athena30x30.svg ├── athena50x50svg.svg └── athena_old.svg ├── config.json ├── documentation-c2 └── .keep ├── documentation-payload ├── .keep └── Athena │ ├── .keep │ ├── Athena.svg │ ├── _index.md │ ├── c2_profiles │ ├── .keep │ ├── HTTP.md │ ├── _index.md │ ├── slack.md │ ├── smb.md │ └── websocket.md │ ├── commands │ ├── .keep │ ├── Socks.md │ ├── Uptime.md │ ├── _index.md │ ├── adcs_enum.md │ ├── add_machine_account.md │ ├── add_user_to_group.md │ ├── amsi.md │ ├── arp.md │ ├── ask_creds.md │ ├── caffeinate.md │ ├── cat.md │ ├── cd.md │ ├── coff.md │ ├── config.md │ ├── cp.md │ ├── crop.md │ ├── cursed.md │ ├── delete_machine_account.md │ ├── download.md │ ├── driver_sigs.md │ ├── drives.md │ ├── ds.md │ ├── enable_user.md │ ├── env.md │ ├── exec.md │ ├── execute-assembly.md │ ├── exit.md │ ├── farmer.md │ ├── get_clipboard.md │ ├── get_localgroup.md │ ├── get_machine_account_quota.md │ ├── get_password_policy.md │ ├── get_sessions.md │ ├── get_shares.md │ ├── hostname.md │ ├── http_server.md │ ├── ifconfig.md │ ├── inject_assembly.md │ ├── inject_shellcode.md │ ├── jobkill.md │ ├── jobs.md │ ├── kerberoast.md │ ├── kill.md │ ├── klist.md │ ├── list_links.md │ ├── list_profiles.md │ ├── load-assembly.md │ ├── load.md │ ├── ls.md │ ├── mkdir.md │ ├── mv.md │ ├── nanorubeus.md │ ├── net_view.md │ ├── nslookup.md │ ├── office_tokens.md │ ├── patchit.md │ ├── port_bender.md │ ├── ps.md │ ├── pwd.md │ ├── reg.md │ ├── reset_assembly_context.md │ ├── rm.md │ ├── rportfwd.md │ ├── sc_config.md │ ├── sc_create.md │ ├── sc_delete.md │ ├── sc_enum.md │ ├── sc_start.md │ ├── sc_stop.md │ ├── schtasks_enum.md │ ├── schtasks_query.md │ ├── schtasks_run.md │ ├── schtasks_stop.md │ ├── screenshot.md │ ├── set_user_pass.md │ ├── sftp.md │ ├── shell.md │ ├── shellcode.md │ ├── ssh.md │ ├── stop_assembly.md │ ├── test_port.md │ ├── timestomp.md │ ├── token.md │ ├── unlink.md │ ├── upload.md │ ├── vss_enum.md │ ├── wget.md │ ├── whoami.md │ ├── win_enum_resources.md │ ├── windowlist.md │ └── wmi_query.md │ ├── development.md │ └── opsec.md └── documentation-wrapper └── .keep /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/.github/workflows/dotnet-desktop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/.gitignore -------------------------------------------------------------------------------- /C2_Profiles/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/LICENSE -------------------------------------------------------------------------------- /Payload_Type/athena/.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/.docker/Dockerfile -------------------------------------------------------------------------------- /Payload_Type/athena/.docker/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | mythic-container 3 | pefile 4 | py2app 5 | -------------------------------------------------------------------------------- /Payload_Type/athena/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/mythicagents/athena:v2.2.2-rc1 -------------------------------------------------------------------------------- /Payload_Type/athena/agent.obfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/agent.obfs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/.editorconfig -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Crypto.Aes/Agent.Crypto.Aes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Crypto.Aes/Agent.Crypto.Aes.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Crypto.Aes/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Crypto.Aes/Crypto.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Crypto.None/Agent.Crypto.None.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Crypto.None/Agent.Crypto.None.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Crypto.None/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Crypto.None/Crypto.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/Agent.Managers.Linux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/Agent.Managers.Linux.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/ProcessSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/ProcessSpawner.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/TokenManger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Linux/TokenManger.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Python/Agent.Managers.Python.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Python/Agent.Managers.Python.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Python/ByteArrayMetaPathImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Python/ByteArrayMetaPathImporter.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Python/CustomProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Python/CustomProvider.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Python/PythonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Python/PythonManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Reflection/AssemblyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Reflection/AssemblyManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Data/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Data/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Data/PE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Data/PE.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Data/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Data/Win32.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Generic.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Invoker/Utilities.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/ProcessSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/ProcessSpawner.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/Resolver.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/TokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Managers.Windows/TokenManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Agent.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Agent.Models.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Assembly/ExecuteAssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Assembly/ExecuteAssemblyContext.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Assembly/ExecuteAssemblyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Assembly/ExecuteAssemblyTask.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Assembly/LoadAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Assembly/LoadAssembly.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Commands/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Commands/ConsoleWriter.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Commands/InteractiveMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Commands/InteractiveMessageType.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Commands/LoadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Commands/LoadCommand.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Commands/SpawnOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Commands/SpawnOptions.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Commands/TaskEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Commands/TaskEventArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Commands/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Commands/Token.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Checkin/Checkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Checkin/Checkin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Checkin/CheckinResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Checkin/CheckinResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/SMB/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/SMB/Edge.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/SMB/SmbMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/SMB/SmbMessage.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/DelegateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/DelegateMessage.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/GetTasking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/GetTasking.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/GetTaskingResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/GetTaskingResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/InteractMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/InteractMessage.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/ServerJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/ServerJob.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/ServerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Comms/Tasks/ServerTask.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAgent.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAgentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAgentConfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAgentMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAgentMod.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAssemblyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IAssemblyManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ICryptoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ICryptoManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IFilePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IFilePlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IForwarderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IForwarderPlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IInteractivePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IInteractivePlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ILogger.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IMessageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IMessageManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IPlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IProxyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IProxyPlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IPythonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/IPythonManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ISpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ISpawner.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ITaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ITaskManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ITokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Interfaces/ITokenManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/ConnectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/ConnectResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/ConnectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/ConnectionOptions.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/DatagramSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/DatagramSource.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/Enums.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/ServerDatagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Proxy/ServerDatagram.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/DownloadTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/DownloadTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/EdgeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/EdgeResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/FileBrowserTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/FileBrowserTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/FileDeletedTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/FileDeletedTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/KeyPressTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/KeyPressTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/LoadTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/LoadTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/ProcessTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/ProcessTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/TaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/TaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/TokenTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/TokenTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Responses/UploadTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Responses/UploadTaskResponse.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Models/Utlities/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Models/Utlities/Misc.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.DebugProfile/DebugProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.DebugProfile/DebugProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Discord/Base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Discord/Base.txt -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Discord/DiscordProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Discord/DiscordProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Discord/MessageWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Discord/MessageWrapper.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.GitHub/Agent.Profiles.GitHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.GitHub/Agent.Profiles.GitHub.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.GitHub/Base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.GitHub/Base.txt -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.GitHub/GitHubProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.GitHub/GitHubProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/Agent.Profiles.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/Agent.Profiles.Http.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/Base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/Base.txt -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/HttpProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/HttpProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/obfuscar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Http/obfuscar.xml -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/Agent.Profiles.Smb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/Agent.Profiles.Smb.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/Base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/Base.txt -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/MessageReceivedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/MessageReceivedArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/SmbProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Smb/SmbProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/Base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/Base.txt -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/MessageReceivedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/MessageReceivedArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/WebSocketMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/WebSocketMessage.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/WebsocketProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.Profiles.Websocket/WebsocketProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Agent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Agent.sln -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AgentPlugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AgentPlugins.sln -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/AthenaCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/AthenaCore.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/AthenaCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/AthenaCore.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Config/AgentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Config/AgentConfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Config/ContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Config/ContainerBuilder.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Config/ContainerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Config/ContainerProvider.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Managers/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Managers/LogManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Managers/MessageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Managers/MessageManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Managers/TaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Managers/TaskManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Program.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Roots.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Roots.xml -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/AthenaCore/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/AthenaCore/Worker.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests.Defender/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests.Defender/GlobalUsings.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests.Defender/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests.Defender/PluginLoader.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests.Defender/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests.Defender/UnitTest1.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/Agent.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/Agent.Tests.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/AgentTests/CheckinTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/AgentTests/CheckinTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/AgentTests/TaskingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/AgentTests/TaskingTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/EncryptionTests/AesCryptoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/EncryptionTests/AesCryptoTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginLoader.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/CatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/CatTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/ConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/ConfigTest.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/DownloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/DownloadTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/LsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/LsTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/PythonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/PythonTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/RegTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/RegTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/SmbPluginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/SmbPluginTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/TailTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/TailTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/UploadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/UploadTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/ZipTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/PluginTests/ZipTests.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestAgent.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestAgentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestAgentConfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestAgentMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestAgentMod.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestFilePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestFilePlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestLogger.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestPlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestProfile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestProxyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestProxyPlugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestSpawner.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestTaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/TestClasses/TestTaskManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/Usings.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/Utilities.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/python313.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/Tests/Agent.Tests/python313.zip -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/BigIntegerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/BigIntegerExtensions.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/CidrClassFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/CidrClassFull.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/CidrClassLess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/CidrClassLess.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/CidrGuess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/CidrGuess.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/ICidrGuess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/ICidrGuess.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/IPAddressCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/IPAddressCollection.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/IPNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/IPNetwork.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/IPNetwork/IPNetworkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/IPNetwork/IPNetworkCollection.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/arp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/arp.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/arp/arp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/arp/arp.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/bin/common/.keep: -------------------------------------------------------------------------------- 1 | ECHO is on. 2 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/bin/linux/.keep: -------------------------------------------------------------------------------- 1 | ECHO is on. 2 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/bin/macos/.keep: -------------------------------------------------------------------------------- 1 | ECHO is on. 2 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/bin/windows/.keep: -------------------------------------------------------------------------------- 1 | ECHO is on. 2 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/build_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/build_utils.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/caffeinate/caffeinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/caffeinate/caffeinate.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/caffeinate/caffeinate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/caffeinate/caffeinate.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cat/cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cat/cat.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cat/cat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cat/cat.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cd/cd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cd/cd.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cd/cd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cd/cd.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff/BofRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff/BofRunner.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff/Coff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff/Coff.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff/IAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff/IAT.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff/ImageParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff/ImageParts.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff/NativeDeclarations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff/NativeDeclarations.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/coff/coff/beacon_funcs.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/coff/coff/beacon_funcs.x64.o -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/config/ConfigUpdateArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/config/ConfigUpdateArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/config/config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/config/config.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/config/config.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/config/config.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cp/CopyArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cp/CopyArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cp/cp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cp/cp.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cp/cp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cp/cp.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/crop/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/crop/Config.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/crop/crop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/crop/crop.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/crop/crop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/crop/crop.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/crop/crophelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/crop/crophelper.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Finders/ChromeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Finders/ChromeFinder.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Finders/EdgeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Finders/EdgeFinder.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Finders/IFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Finders/IFinder.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Finders/ManualFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Finders/ManualFinder.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Models/ChromeJsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Models/ChromeJsonObject.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Models/CursedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Models/CursedArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Models/DebugEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Models/DebugEvaluator.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Models/ExtensionManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Models/ExtensionManifest.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Models/RuntimeEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Models/RuntimeEvaluator.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Utilities/CommandParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Utilities/CommandParser.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Utilities/CursedConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Utilities/CursedConfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Utilities/DebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Utilities/DebugHelper.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/Utilities/WebSocketHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/Utilities/WebSocketHelper.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/cursed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/cursed.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/cursed/cursed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/cursed/cursed.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/download/DownloadArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/download/DownloadArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/download/download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/download/download.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/download/download.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/download/download.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/drives/drives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/drives/drives.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/drives/drives.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/drives/drives.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ds/DsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ds/DsArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ds/ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ds/ds.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ds/ds.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ds/ds.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/echo/echo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/echo/echo.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/echo/echo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/echo/echo.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/entitlements/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/entitlements/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/entitlements/entitlements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/entitlements/entitlements.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/entitlements/entitlements.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/entitlements/entitlements.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/env/env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/env/env.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/env/env.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/env/env.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/exec/ExecArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/exec/ExecArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/exec/exec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/exec/exec.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/exec/exec.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/exec/exec.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-assembly/ConsoleApplicationExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-assembly/ConsoleApplicationExecutor.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-assembly/ExecuteAssemblyArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-assembly/ExecuteAssemblyArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-assembly/execute-assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-assembly/execute-assembly.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-assembly/execute-assembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-assembly/execute-assembly.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-module/AthenaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-module/AthenaModule.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-module/ExecModuleArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-module/ExecModuleArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-module/execute-module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-module/execute-module.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/execute-module/execute-module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/execute-module/execute-module.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/exit/exit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/exit/exit.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/exit/exit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/exit/exit.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/farmer/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/farmer/Crypto.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/farmer/Farmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/farmer/Farmer.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/farmer/FarmerArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/farmer/FarmerArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/farmer/farmer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/farmer/farmer.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/farmer/farmerplugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/farmer/farmerplugin.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-clipboard/get-clipboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-clipboard/get-clipboard.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-clipboard/getclipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-clipboard/getclipboard.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-localgroup/GetLocalGroupArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-localgroup/GetLocalGroupArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-localgroup/get-localgroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-localgroup/get-localgroup.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-localgroup/get-localgroup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-localgroup/get-localgroup.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-sessions/get-sessions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-sessions/get-sessions.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-sessions/get-sessions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-sessions/get-sessions.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-shares/get-shares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-shares/get-shares.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/get-shares/get-shares.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/get-shares/get-shares.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/hostname/hostname.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/hostname/hostname.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/hostname/hostname.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/hostname/hostname.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/http-server/HttpServerArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/http-server/HttpServerArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/http-server/http-server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/http-server/http-server.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/http-server/http-server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/http-server/http-server.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ifconfig/ifconfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ifconfig/ifconfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ifconfig/ifconfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ifconfig/ifconfig.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode-linux/Models/InjectArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode-linux/Models/InjectArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode-linux/Ptrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode-linux/Ptrace.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode-linux/inject-shellcode-linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode-linux/inject-shellcode-linux.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/API/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/API/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Models/InjectArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Models/InjectArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/AtomBomb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/AtomBomb.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/ClassicInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/ClassicInjection.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/DeskEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/DeskEnum.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/Hypno.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/Hypno.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/ITechnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/ITechnique.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/MapViewOfSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/MapViewOfSection.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/TestInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/TestInjector.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/ThreadHijack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/Techniques/ThreadHijack.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/inject-shellcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/inject-shellcode.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/inject-shellcode/inject-shellcode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/inject-shellcode/inject-shellcode.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jobkill/jobkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jobkill/jobkill.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jobkill/jobkill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jobkill/jobkill.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jobs/jobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jobs/jobs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jobs/jobs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jobs/jobs.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/JxaArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/JxaArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Mono/AppleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Mono/AppleEvent.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Mono/AppleScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Mono/AppleScript.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Mono/Carbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Mono/Carbon.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Mono/ComponentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Mono/ComponentManager.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Mono/CoreFoundation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Mono/CoreFoundation.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Mono/NavDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Mono/NavDialog.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/ObjectiveC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/ObjectiveC.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/Program.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/jxa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/jxa.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/jxa.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/jxa.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/jxa/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/jxa/test.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/keychain/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/keychain/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/keychain/keychain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/keychain/keychain.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/keychain/keychain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/keychain/keychain.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/keylogger/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/keylogger/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/keylogger/keylogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/keylogger/keylogger.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/keylogger/keylogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/keylogger/keylogger.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/kill/KillArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/kill/KillArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/kill/kill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/kill/kill.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/kill/kill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/kill/kill.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/lnk/LnkArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/lnk/LnkArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/lnk/lnk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/lnk/lnk.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/lnk/lnk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/lnk/lnk.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/LocalListing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/LocalListing.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/LsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/LsArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/LsUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/LsUtilities.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/RemoteListing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/RemoteListing.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/UncParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/UncParser.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/ls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/ls.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ls/ls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ls/ls.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/mac_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/mac_bundle.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/mkdir/mkdir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/mkdir/mkdir.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/mkdir/mkdir.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/mkdir/mkdir.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/mv/mv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/mv/mv.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/mv/mv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/mv/mv.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/netstat/ManagedIpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/netstat/ManagedIpHelper.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/netstat/netstat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/netstat/netstat.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/netstat/netstat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/netstat/netstat.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/Nidhogg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/Nidhogg.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggAntiAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggAntiAnalysis.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggFile.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggIoctls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggIoctls.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggMemory.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggNetwork.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggProcess.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggRegistry.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggStructs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggApi/NidhoggThread.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/NidhoggArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/NidhoggArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/nidhogg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/nidhogg.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nidhogg/nidhogg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nidhogg/nidhogg.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nslookup/NsLookupArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nslookup/NsLookupArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nslookup/nslookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nslookup/nslookup.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/nslookup/nslookup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/nslookup/nslookup.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/port-bender/PortBenderArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/port-bender/PortBenderArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/port-bender/TcpForwarder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/port-bender/TcpForwarder.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/port-bender/TcpForwarderSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/port-bender/TcpForwarderSlim.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/port-bender/port-bender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/port-bender/port-bender.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/port-bender/port-bender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/port-bender/port-bender.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ps/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ps/ProcessHelper.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ps/PsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ps/PsArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ps/ps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ps/ps.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ps/ps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ps/ps.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/pwd/pwd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/pwd/pwd.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/pwd/pwd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/pwd/pwd.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-exec/PythonExecArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-exec/PythonExecArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-exec/lib.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-exec/lib.zip -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-exec/python-exec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-exec/python-exec.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-exec/python-exec.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-exec/python-exec.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-load/PythonLoadArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-load/PythonLoadArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-load/python-load.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-load/python-load.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/python-load/python-load.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/python-load/python-load.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/reg/RegArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/reg/RegArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/reg/reg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/reg/reg.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/reg/reg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/reg/reg.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rm/RmArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rm/RmArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rm/rm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rm/rm.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rm/rm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rm/rm.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rportfwd/Client/AsyncTcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rportfwd/Client/AsyncTcpClient.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rportfwd/Config/ConnectionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rportfwd/Config/ConnectionConfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rportfwd/Server/AsyncTcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rportfwd/Server/AsyncTcpServer.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rportfwd/rportfwd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rportfwd/rportfwd.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/rportfwd/rportfwd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/rportfwd/rportfwd.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/screenshot/ScreenshotArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/screenshot/ScreenshotArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/screenshot/screenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/screenshot/screenshot.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/screenshot/screenshot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/screenshot/screenshot.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/sftp/SftpArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/sftp/SftpArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/sftp/sftp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/sftp/sftp.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/sftp/sftp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/sftp/sftp.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/shell/ProcessRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/shell/ProcessRunner.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/shell/shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/shell/shell.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/shell/shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/shell/shell.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/shellcode/ShellcodeArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/shellcode/ShellcodeArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/shellcode/shellcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/shellcode/shellcode.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/shellcode/shellcode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/shellcode/shellcode.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/smb/SmbLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/smb/SmbLink.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/smb/SmbLinkArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/smb/SmbLinkArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/smb/smb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/smb/smb.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/smb/smb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/smb/smb.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/DataReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/DataReceivedEventArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/TcpClient.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/TcpClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/TcpClientConfig.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/UdpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/socks/Nager.TcpClient/UdpClient.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/socks/socks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/socks/socks.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/socks/socks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/socks/socks.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ssh/SshArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ssh/SshArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ssh/ssh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ssh/ssh.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/ssh/ssh.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/ssh/ssh.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/tail/TailArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/tail/TailArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/tail/tail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/tail/tail.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/tail/tail.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/tail/tail.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/test-port/test-port.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/test-port/test-port.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/test-port/test-port.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/test-port/test-port.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/timestomp/TimeStompArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/timestomp/TimeStompArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/timestomp/timestomp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/timestomp/timestomp.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/timestomp/timestomp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/timestomp/timestomp.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/token/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/token/Native.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/token/token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/token/token.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/token/token.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/token/token.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/upload/UploadArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/upload/UploadArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/upload/upload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/upload/upload.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/upload/upload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/upload/upload.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/uptime/uptime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/uptime/uptime.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/uptime/uptime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/uptime/uptime.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/wget/wget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/wget/wget.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/wget/wget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/wget/wget.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/whoami/whoami.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/whoami/whoami.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/whoami/whoami.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/whoami/whoami.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip-dl/ZipDlArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip-dl/ZipDlArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip-dl/zip-dl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip-dl/zip-dl.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip-dl/zip-dl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip-dl/zip-dl.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip-inspect/ZipInspectArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip-inspect/ZipInspectArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip-inspect/zip-inspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip-inspect/zip-inspect.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip-inspect/zip-inspect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip-inspect/zip-inspect.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip/ZipArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip/ZipArgs.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip/zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip/zip.cs -------------------------------------------------------------------------------- /Payload_Type/athena/athena/agent_code/zip/zip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/agent_code/zip/zip.csproj -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/__init__.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/__init__.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/arp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/arp.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena.svg -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/bof_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena_utils/bof_utilities.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/mac_bundler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena_utils/mac_bundler.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/message_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena_utils/message_converter.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/message_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena_utils/message_utilities.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/mythicrpc_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena_utils/mythicrpc_utilities.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/athena_utils/plugin_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/athena_utils/plugin_utilities.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/builder.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/caffeinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/caffeinate.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/cat.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/cd.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/coff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/coff.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/config.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/cp.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/crop.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/cursed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/cursed.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/download.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/drives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/drives.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ds-connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ds-connect.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ds-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ds-query.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ds.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/echo.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/env.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/exec.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/execute-assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/execute-assembly.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/execute-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/execute-module.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/exit.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/farmer.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/get-clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/get-clipboard.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/get-localgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/get-localgroup.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/get-sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/get-sessions.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/get-shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/get-shares.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/hostname.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/http-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/http-server.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ifconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ifconfig.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/inject-assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/inject-assembly.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/inject-shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/inject-shellcode.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/jobkill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/jobkill.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/jobs.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/jxa.why: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/jxa.why -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/keychain.why: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/keychain.why -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/keylogger.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/kill.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/lnk.why: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/lnk.why -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/load-assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/load-assembly.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/load.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ls.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/kerberoast.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | void execute_kerberoast(WCHAR** dispatch, char* spn); -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/klist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/klist.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/krb5.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/luid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/luid.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/ptt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/ptt.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/purge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/include/purge.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/base64.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/common.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/klist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/klist.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/krb5.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/luid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/luid.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/ptt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/ptt.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/purge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/nanorubeus/source/purge.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/LICENSE -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/beacon.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/patchit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/misc_bofs/patchit/patchit.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/mkdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/mkdir.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/mv.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/netstat.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/nidhogg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/nidhogg.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/nidhogg_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/nidhogg_commands/nidhogg_hidemodule.notcreatedyet: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/nidhogg_commands/nidhogg_hideport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/nidhogg_commands/nidhogg_hideport.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/nidhogg_commands/nidhogg_unhidemodule.notcreatedyet: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/nslookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/nslookup.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/add-machine-account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/add-machine-account.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask-creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask-creds.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/Askcreds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/Askcreds.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/Askcreds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/Askcreds.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/ask_creds/beacon.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/kerberoast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/kerberoast.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/kerberoast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/kerberoast/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/kerberoast/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/kerberoast/beacon.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Klist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Klist.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Klist.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Klist.cna -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Klist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Klist.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/README.md -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/outflank_bofs/klist/beacon.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/port-bender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/port-bender.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ps.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/pwd.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/python-exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/python-exec.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/python-load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/python-load.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/python.py.why: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/python.py.why -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/reg.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/rm.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/rportfwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/rportfwd.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/screenshot.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/sftp.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/shell.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/shellcode.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/smb.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/socks.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/ssh.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/tail.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/test-port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/test-port.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/timestomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/timestomp.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/token.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/LICENSE -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs-enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs-enum.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs_enum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs_enum/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs_enum/certca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs_enum/certca.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs_enum/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/adcs_enum/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/anticrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/anticrash.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/base.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/beacon.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/bofdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/bofdefs.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/queue.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/stack.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/wmi.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/common/wmi.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/driver-sigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/driver-sigs.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/driversigs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/driversigs/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/driversigs/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/driversigs/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/net-view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/net-view.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/netview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/netview/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/netview/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/netview/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/sc-enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/sc-enum.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/sc_enum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/sc_enum/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/sc_enum/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/sc_enum/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/schtasks-enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/schtasks-enum.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/schtasks-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/schtasks-query.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/vss-enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/vss-enum.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/vssenum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/vssenum/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/vssenum/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/vssenum/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/windowlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/windowlist.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/windowlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/windowlist/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/windowlist/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/windowlist/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/wmi-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/wmi-query.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/wmi_query/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/wmi_query/Makefile -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/wmi_query/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_bofs/wmi_query/entry.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/LICENSE -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/common/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/common/wmi.c -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/common/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/common/wmi.h -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-config.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-create.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-delete.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-start.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/trusted_sec_remote_bofs/sc-stop.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/upload.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/uptime.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/whoami.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/zip-dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/zip-dl.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/zip-inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/zip-inspect.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/agent_functions/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/agent_functions/zip.py -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/create_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/create_table.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/download.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/drives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/drives.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/ds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/ds.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/env.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/jobs.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/ls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/ls.js -------------------------------------------------------------------------------- /Payload_Type/athena/athena/mythic/browser_scripts/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/athena/mythic/browser_scripts/ps.js -------------------------------------------------------------------------------- /Payload_Type/athena/common.obfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/common.obfs -------------------------------------------------------------------------------- /Payload_Type/athena/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/Payload_Type/athena/main.py -------------------------------------------------------------------------------- /Payload_Type/athena/requirements.txt: -------------------------------------------------------------------------------- 1 | pefile 2 | py2app 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/README.md -------------------------------------------------------------------------------- /agent_capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/agent_capabilities.json -------------------------------------------------------------------------------- /agent_icons/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent_icons/athena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/agent_icons/athena.svg -------------------------------------------------------------------------------- /agent_icons/athena30x30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/agent_icons/athena30x30.svg -------------------------------------------------------------------------------- /agent_icons/athena50x50svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/agent_icons/athena50x50svg.svg -------------------------------------------------------------------------------- /agent_icons/athena_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/agent_icons/athena_old.svg -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/config.json -------------------------------------------------------------------------------- /documentation-c2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/Athena/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/Athena/Athena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/Athena.svg -------------------------------------------------------------------------------- /documentation-payload/Athena/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/_index.md -------------------------------------------------------------------------------- /documentation-payload/Athena/c2_profiles/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/Athena/c2_profiles/HTTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/c2_profiles/HTTP.md -------------------------------------------------------------------------------- /documentation-payload/Athena/c2_profiles/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/c2_profiles/_index.md -------------------------------------------------------------------------------- /documentation-payload/Athena/c2_profiles/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/c2_profiles/slack.md -------------------------------------------------------------------------------- /documentation-payload/Athena/c2_profiles/smb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/c2_profiles/smb.md -------------------------------------------------------------------------------- /documentation-payload/Athena/c2_profiles/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/c2_profiles/websocket.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/Socks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/Socks.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/Uptime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/Uptime.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/_index.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/adcs_enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/adcs_enum.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/add_machine_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/add_machine_account.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/add_user_to_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/add_user_to_group.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/amsi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/amsi.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/arp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/arp.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/ask_creds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/ask_creds.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/caffeinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/caffeinate.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/cat.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/cd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/cd.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/coff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/coff.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/config.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/cp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/cp.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/crop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/crop.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/cursed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/cursed.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/delete_machine_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/delete_machine_account.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/download.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/driver_sigs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/driver_sigs.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/drives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/drives.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/ds.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/enable_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/enable_user.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/env.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/exec.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/execute-assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/execute-assembly.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/exit.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/farmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/farmer.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/get_clipboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/get_clipboard.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/get_localgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/get_localgroup.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/get_machine_account_quota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/get_machine_account_quota.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/get_password_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/get_password_policy.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/get_sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/get_sessions.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/get_shares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/get_shares.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/hostname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/hostname.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/http_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/http_server.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/ifconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/ifconfig.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/inject_assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/inject_assembly.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/inject_shellcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/inject_shellcode.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/jobkill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/jobkill.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/jobs.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/kerberoast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/kerberoast.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/kill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/kill.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/klist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/klist.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/list_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/list_links.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/list_profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/list_profiles.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/load-assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/load-assembly.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/load.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/ls.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/mkdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/mkdir.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/mv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/mv.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/nanorubeus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/nanorubeus.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/net_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/net_view.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/nslookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/nslookup.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/office_tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/office_tokens.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/patchit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/patchit.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/port_bender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/port_bender.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/ps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/ps.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/pwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/pwd.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/reg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/reg.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/reset_assembly_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/reset_assembly_context.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/rm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/rm.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/rportfwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/rportfwd.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sc_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sc_config.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sc_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sc_create.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sc_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sc_delete.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sc_enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sc_enum.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sc_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sc_start.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sc_stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sc_stop.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/schtasks_enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/schtasks_enum.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/schtasks_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/schtasks_query.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/schtasks_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/schtasks_run.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/schtasks_stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/schtasks_stop.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/screenshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/screenshot.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/set_user_pass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/set_user_pass.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/sftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/sftp.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/shell.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/shellcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/shellcode.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/ssh.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/stop_assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/stop_assembly.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/test_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/test_port.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/timestomp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/timestomp.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/token.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/unlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/unlink.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/upload.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/vss_enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/vss_enum.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/wget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/wget.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/whoami.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/whoami.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/win_enum_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/win_enum_resources.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/windowlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/windowlist.md -------------------------------------------------------------------------------- /documentation-payload/Athena/commands/wmi_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/commands/wmi_query.md -------------------------------------------------------------------------------- /documentation-payload/Athena/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/development.md -------------------------------------------------------------------------------- /documentation-payload/Athena/opsec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicAgents/Athena/HEAD/documentation-payload/Athena/opsec.md -------------------------------------------------------------------------------- /documentation-wrapper/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------