├── .gitignore ├── README.md ├── RECIPE.md ├── cert └── makeCert.sh ├── change_grunt_kill_date.py ├── change_grunt_sleep_time.py ├── cleanup_grunts.py ├── config.yml.example ├── configure_default_launcher_kill_date.py ├── files └── .assets_to_host ├── manage_database.py ├── python-client ├── .gitignore ├── .swagger-codegen-ignore ├── .swagger-codegen │ └── VERSION ├── .travis.yml ├── README.md ├── docs │ ├── BinaryLauncher.md │ ├── BridgeListener.md │ ├── CapturedCredential.md │ ├── CapturedHashCredential.md │ ├── CapturedPasswordCredential.md │ ├── CapturedTicketCredential.md │ ├── CodeMirrorTheme.md │ ├── CommandOutput.md │ ├── CommandOutputApiApi.md │ ├── CommunicationType.md │ ├── CovenantUser.md │ ├── CovenantUserApiApi.md │ ├── CovenantUserLogin.md │ ├── CovenantUserLoginResult.md │ ├── CovenantUserRegister.md │ ├── CredentialApiApi.md │ ├── CredentialType.md │ ├── CscriptLauncher.md │ ├── DotNetVersion.md │ ├── DownloadEvent.md │ ├── DownloadProgress.md │ ├── EmbeddedResource.md │ ├── EmbeddedResourceApiApi.md │ ├── Event.md │ ├── EventApiApi.md │ ├── EventLevel.md │ ├── EventType.md │ ├── FileIndicator.md │ ├── Grunt.md │ ├── GruntApiApi.md │ ├── GruntCommand.md │ ├── GruntCommandApiApi.md │ ├── GruntStatus.md │ ├── GruntTask.md │ ├── GruntTaskApiApi.md │ ├── GruntTaskAuthor.md │ ├── GruntTaskOption.md │ ├── GruntTasking.md │ ├── GruntTaskingApiApi.md │ ├── GruntTaskingStatus.md │ ├── GruntTaskingType.md │ ├── HashType.md │ ├── HostedFile.md │ ├── HttpListener.md │ ├── HttpProfile.md │ ├── HttpProfileHeader.md │ ├── IdentityRole.md │ ├── ImplantDirection.md │ ├── ImplantLanguage.md │ ├── ImplantTemplate.md │ ├── ImplantTemplateApiApi.md │ ├── Indicator.md │ ├── IndicatorApiApi.md │ ├── IndicatorType.md │ ├── InstallUtilLauncher.md │ ├── IntegrityLevel.md │ ├── Launcher.md │ ├── LauncherApiApi.md │ ├── LauncherType.md │ ├── Listener.md │ ├── ListenerApiApi.md │ ├── ListenerStatus.md │ ├── ListenerType.md │ ├── MSBuildLauncher.md │ ├── MshtaLauncher.md │ ├── NetworkIndicator.md │ ├── OutputKind.md │ ├── PowerShellLauncher.md │ ├── Profile.md │ ├── ProfileApiApi.md │ ├── ProfileType.md │ ├── ReferenceAssembly.md │ ├── ReferenceAssemblyApiApi.md │ ├── ReferenceSourceLibrary.md │ ├── ReferenceSourceLibraryApiApi.md │ ├── Regsvr32Launcher.md │ ├── RuntimeIdentifier.md │ ├── ScriptingLanguage.md │ ├── ShellCodeLauncher.md │ ├── StringIdentityUserRole.md │ ├── TargetIndicator.md │ ├── Theme.md │ ├── ThemeApiApi.md │ ├── TicketType.md │ ├── WmicLauncher.md │ └── WscriptLauncher.md ├── git_push.sh ├── requirements.txt ├── setup.py ├── swagger_client │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── command_output_api_api.py │ │ ├── covenant_user_api_api.py │ │ ├── credential_api_api.py │ │ ├── embedded_resource_api_api.py │ │ ├── event_api_api.py │ │ ├── grunt_api_api.py │ │ ├── grunt_command_api_api.py │ │ ├── grunt_task_api_api.py │ │ ├── grunt_tasking_api_api.py │ │ ├── implant_template_api_api.py │ │ ├── indicator_api_api.py │ │ ├── launcher_api_api.py │ │ ├── listener_api_api.py │ │ ├── profile_api_api.py │ │ ├── reference_assembly_api_api.py │ │ ├── reference_source_library_api_api.py │ │ └── theme_api_api.py │ ├── api_client.py │ ├── configuration.py │ ├── models │ │ ├── __init__.py │ │ ├── binary_launcher.py │ │ ├── bridge_listener.py │ │ ├── captured_credential.py │ │ ├── captured_hash_credential.py │ │ ├── captured_password_credential.py │ │ ├── captured_ticket_credential.py │ │ ├── code_mirror_theme.py │ │ ├── command_output.py │ │ ├── communication_type.py │ │ ├── covenant_user.py │ │ ├── covenant_user_login.py │ │ ├── covenant_user_login_result.py │ │ ├── covenant_user_register.py │ │ ├── credential_type.py │ │ ├── cscript_launcher.py │ │ ├── dot_net_version.py │ │ ├── download_event.py │ │ ├── download_progress.py │ │ ├── embedded_resource.py │ │ ├── event.py │ │ ├── event_level.py │ │ ├── event_type.py │ │ ├── file_indicator.py │ │ ├── grunt.py │ │ ├── grunt_command.py │ │ ├── grunt_status.py │ │ ├── grunt_task.py │ │ ├── grunt_task_author.py │ │ ├── grunt_task_option.py │ │ ├── grunt_tasking.py │ │ ├── grunt_tasking_status.py │ │ ├── grunt_tasking_type.py │ │ ├── hash_type.py │ │ ├── hosted_file.py │ │ ├── http_listener.py │ │ ├── http_profile.py │ │ ├── http_profile_header.py │ │ ├── identity_role.py │ │ ├── implant_direction.py │ │ ├── implant_language.py │ │ ├── implant_template.py │ │ ├── indicator.py │ │ ├── indicator_type.py │ │ ├── install_util_launcher.py │ │ ├── integrity_level.py │ │ ├── launcher.py │ │ ├── launcher_type.py │ │ ├── listener.py │ │ ├── listener_status.py │ │ ├── listener_type.py │ │ ├── ms_build_launcher.py │ │ ├── mshta_launcher.py │ │ ├── network_indicator.py │ │ ├── output_kind.py │ │ ├── power_shell_launcher.py │ │ ├── profile.py │ │ ├── profile_type.py │ │ ├── reference_assembly.py │ │ ├── reference_source_library.py │ │ ├── regsvr32_launcher.py │ │ ├── runtime_identifier.py │ │ ├── scripting_language.py │ │ ├── shell_code_launcher.py │ │ ├── string_identity_user_role.py │ │ ├── target_indicator.py │ │ ├── theme.py │ │ ├── ticket_type.py │ │ ├── wmic_launcher.py │ │ └── wscript_launcher.py │ └── rest.py ├── test-requirements.txt ├── test │ ├── __init__.py │ ├── test_binary_launcher.py │ ├── test_bridge_listener.py │ ├── test_captured_credential.py │ ├── test_captured_hash_credential.py │ ├── test_captured_password_credential.py │ ├── test_captured_ticket_credential.py │ ├── test_code_mirror_theme.py │ ├── test_command_output.py │ ├── test_command_output_api_api.py │ ├── test_communication_type.py │ ├── test_covenant_user.py │ ├── test_covenant_user_api_api.py │ ├── test_covenant_user_login.py │ ├── test_covenant_user_login_result.py │ ├── test_covenant_user_register.py │ ├── test_credential_api_api.py │ ├── test_credential_type.py │ ├── test_cscript_launcher.py │ ├── test_dot_net_version.py │ ├── test_download_event.py │ ├── test_download_progress.py │ ├── test_embedded_resource.py │ ├── test_embedded_resource_api_api.py │ ├── test_event.py │ ├── test_event_api_api.py │ ├── test_event_level.py │ ├── test_event_type.py │ ├── test_file_indicator.py │ ├── test_grunt.py │ ├── test_grunt_api_api.py │ ├── test_grunt_command.py │ ├── test_grunt_command_api_api.py │ ├── test_grunt_status.py │ ├── test_grunt_task.py │ ├── test_grunt_task_api_api.py │ ├── test_grunt_task_author.py │ ├── test_grunt_task_option.py │ ├── test_grunt_tasking.py │ ├── test_grunt_tasking_api_api.py │ ├── test_grunt_tasking_status.py │ ├── test_grunt_tasking_type.py │ ├── test_hash_type.py │ ├── test_hosted_file.py │ ├── test_http_listener.py │ ├── test_http_profile.py │ ├── test_http_profile_header.py │ ├── test_identity_role.py │ ├── test_implant_direction.py │ ├── test_implant_language.py │ ├── test_implant_template.py │ ├── test_implant_template_api_api.py │ ├── test_indicator.py │ ├── test_indicator_api_api.py │ ├── test_indicator_type.py │ ├── test_install_util_launcher.py │ ├── test_integrity_level.py │ ├── test_launcher.py │ ├── test_launcher_api_api.py │ ├── test_launcher_type.py │ ├── test_listener.py │ ├── test_listener_api_api.py │ ├── test_listener_status.py │ ├── test_listener_type.py │ ├── test_ms_build_launcher.py │ ├── test_mshta_launcher.py │ ├── test_network_indicator.py │ ├── test_output_kind.py │ ├── test_power_shell_launcher.py │ ├── test_profile.py │ ├── test_profile_api_api.py │ ├── test_profile_type.py │ ├── test_reference_assembly.py │ ├── test_reference_assembly_api_api.py │ ├── test_reference_source_library.py │ ├── test_reference_source_library_api_api.py │ ├── test_regsvr32_launcher.py │ ├── test_runtime_identifier.py │ ├── test_scripting_language.py │ ├── test_shell_code_launcher.py │ ├── test_string_identity_user_role.py │ ├── test_target_indicator.py │ ├── test_theme.py │ ├── test_theme_api_api.py │ ├── test_ticket_type.py │ ├── test_wmic_launcher.py │ └── test_wscript_launcher.py └── tox.ini ├── setup_covenant.py ├── supporting ├── Create-Phishing-Powershell-Encoded.ps1 ├── bs.ps1 ├── covenant.service ├── haproxy.cfg ├── install │ └── cov-install.sh └── metasploit │ ├── bind_meterpreter.sh │ ├── bind_meterpreter_shellcode.sh │ ├── commands.rc │ ├── envenomate.sh │ └── msfconsole.rc └── templates ├── .grunt_templates ├── Brute.json.default ├── GruntBridge.json.default ├── GruntHTTP.json.default └── GruntSMB.json.default /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/README.md -------------------------------------------------------------------------------- /RECIPE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/RECIPE.md -------------------------------------------------------------------------------- /cert/makeCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/cert/makeCert.sh -------------------------------------------------------------------------------- /change_grunt_kill_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/change_grunt_kill_date.py -------------------------------------------------------------------------------- /change_grunt_sleep_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/change_grunt_sleep_time.py -------------------------------------------------------------------------------- /cleanup_grunts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/cleanup_grunts.py -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/config.yml.example -------------------------------------------------------------------------------- /configure_default_launcher_kill_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/configure_default_launcher_kill_date.py -------------------------------------------------------------------------------- /files/.assets_to_host: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/manage_database.py -------------------------------------------------------------------------------- /python-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/.gitignore -------------------------------------------------------------------------------- /python-client/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/.swagger-codegen-ignore -------------------------------------------------------------------------------- /python-client/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.18 -------------------------------------------------------------------------------- /python-client/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/.travis.yml -------------------------------------------------------------------------------- /python-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/README.md -------------------------------------------------------------------------------- /python-client/docs/BinaryLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/BinaryLauncher.md -------------------------------------------------------------------------------- /python-client/docs/BridgeListener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/BridgeListener.md -------------------------------------------------------------------------------- /python-client/docs/CapturedCredential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CapturedCredential.md -------------------------------------------------------------------------------- /python-client/docs/CapturedHashCredential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CapturedHashCredential.md -------------------------------------------------------------------------------- /python-client/docs/CapturedPasswordCredential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CapturedPasswordCredential.md -------------------------------------------------------------------------------- /python-client/docs/CapturedTicketCredential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CapturedTicketCredential.md -------------------------------------------------------------------------------- /python-client/docs/CodeMirrorTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CodeMirrorTheme.md -------------------------------------------------------------------------------- /python-client/docs/CommandOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CommandOutput.md -------------------------------------------------------------------------------- /python-client/docs/CommandOutputApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CommandOutputApiApi.md -------------------------------------------------------------------------------- /python-client/docs/CommunicationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CommunicationType.md -------------------------------------------------------------------------------- /python-client/docs/CovenantUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CovenantUser.md -------------------------------------------------------------------------------- /python-client/docs/CovenantUserApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CovenantUserApiApi.md -------------------------------------------------------------------------------- /python-client/docs/CovenantUserLogin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CovenantUserLogin.md -------------------------------------------------------------------------------- /python-client/docs/CovenantUserLoginResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CovenantUserLoginResult.md -------------------------------------------------------------------------------- /python-client/docs/CovenantUserRegister.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CovenantUserRegister.md -------------------------------------------------------------------------------- /python-client/docs/CredentialApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CredentialApiApi.md -------------------------------------------------------------------------------- /python-client/docs/CredentialType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CredentialType.md -------------------------------------------------------------------------------- /python-client/docs/CscriptLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/CscriptLauncher.md -------------------------------------------------------------------------------- /python-client/docs/DotNetVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/DotNetVersion.md -------------------------------------------------------------------------------- /python-client/docs/DownloadEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/DownloadEvent.md -------------------------------------------------------------------------------- /python-client/docs/DownloadProgress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/DownloadProgress.md -------------------------------------------------------------------------------- /python-client/docs/EmbeddedResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/EmbeddedResource.md -------------------------------------------------------------------------------- /python-client/docs/EmbeddedResourceApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/EmbeddedResourceApiApi.md -------------------------------------------------------------------------------- /python-client/docs/Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Event.md -------------------------------------------------------------------------------- /python-client/docs/EventApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/EventApiApi.md -------------------------------------------------------------------------------- /python-client/docs/EventLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/EventLevel.md -------------------------------------------------------------------------------- /python-client/docs/EventType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/EventType.md -------------------------------------------------------------------------------- /python-client/docs/FileIndicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/FileIndicator.md -------------------------------------------------------------------------------- /python-client/docs/Grunt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Grunt.md -------------------------------------------------------------------------------- /python-client/docs/GruntApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntApiApi.md -------------------------------------------------------------------------------- /python-client/docs/GruntCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntCommand.md -------------------------------------------------------------------------------- /python-client/docs/GruntCommandApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntCommandApiApi.md -------------------------------------------------------------------------------- /python-client/docs/GruntStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntStatus.md -------------------------------------------------------------------------------- /python-client/docs/GruntTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTask.md -------------------------------------------------------------------------------- /python-client/docs/GruntTaskApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTaskApiApi.md -------------------------------------------------------------------------------- /python-client/docs/GruntTaskAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTaskAuthor.md -------------------------------------------------------------------------------- /python-client/docs/GruntTaskOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTaskOption.md -------------------------------------------------------------------------------- /python-client/docs/GruntTasking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTasking.md -------------------------------------------------------------------------------- /python-client/docs/GruntTaskingApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTaskingApiApi.md -------------------------------------------------------------------------------- /python-client/docs/GruntTaskingStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTaskingStatus.md -------------------------------------------------------------------------------- /python-client/docs/GruntTaskingType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/GruntTaskingType.md -------------------------------------------------------------------------------- /python-client/docs/HashType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/HashType.md -------------------------------------------------------------------------------- /python-client/docs/HostedFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/HostedFile.md -------------------------------------------------------------------------------- /python-client/docs/HttpListener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/HttpListener.md -------------------------------------------------------------------------------- /python-client/docs/HttpProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/HttpProfile.md -------------------------------------------------------------------------------- /python-client/docs/HttpProfileHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/HttpProfileHeader.md -------------------------------------------------------------------------------- /python-client/docs/IdentityRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/IdentityRole.md -------------------------------------------------------------------------------- /python-client/docs/ImplantDirection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ImplantDirection.md -------------------------------------------------------------------------------- /python-client/docs/ImplantLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ImplantLanguage.md -------------------------------------------------------------------------------- /python-client/docs/ImplantTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ImplantTemplate.md -------------------------------------------------------------------------------- /python-client/docs/ImplantTemplateApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ImplantTemplateApiApi.md -------------------------------------------------------------------------------- /python-client/docs/Indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Indicator.md -------------------------------------------------------------------------------- /python-client/docs/IndicatorApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/IndicatorApiApi.md -------------------------------------------------------------------------------- /python-client/docs/IndicatorType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/IndicatorType.md -------------------------------------------------------------------------------- /python-client/docs/InstallUtilLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/InstallUtilLauncher.md -------------------------------------------------------------------------------- /python-client/docs/IntegrityLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/IntegrityLevel.md -------------------------------------------------------------------------------- /python-client/docs/Launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Launcher.md -------------------------------------------------------------------------------- /python-client/docs/LauncherApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/LauncherApiApi.md -------------------------------------------------------------------------------- /python-client/docs/LauncherType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/LauncherType.md -------------------------------------------------------------------------------- /python-client/docs/Listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Listener.md -------------------------------------------------------------------------------- /python-client/docs/ListenerApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ListenerApiApi.md -------------------------------------------------------------------------------- /python-client/docs/ListenerStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ListenerStatus.md -------------------------------------------------------------------------------- /python-client/docs/ListenerType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ListenerType.md -------------------------------------------------------------------------------- /python-client/docs/MSBuildLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/MSBuildLauncher.md -------------------------------------------------------------------------------- /python-client/docs/MshtaLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/MshtaLauncher.md -------------------------------------------------------------------------------- /python-client/docs/NetworkIndicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/NetworkIndicator.md -------------------------------------------------------------------------------- /python-client/docs/OutputKind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/OutputKind.md -------------------------------------------------------------------------------- /python-client/docs/PowerShellLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/PowerShellLauncher.md -------------------------------------------------------------------------------- /python-client/docs/Profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Profile.md -------------------------------------------------------------------------------- /python-client/docs/ProfileApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ProfileApiApi.md -------------------------------------------------------------------------------- /python-client/docs/ProfileType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ProfileType.md -------------------------------------------------------------------------------- /python-client/docs/ReferenceAssembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ReferenceAssembly.md -------------------------------------------------------------------------------- /python-client/docs/ReferenceAssemblyApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ReferenceAssemblyApiApi.md -------------------------------------------------------------------------------- /python-client/docs/ReferenceSourceLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ReferenceSourceLibrary.md -------------------------------------------------------------------------------- /python-client/docs/ReferenceSourceLibraryApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ReferenceSourceLibraryApiApi.md -------------------------------------------------------------------------------- /python-client/docs/Regsvr32Launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Regsvr32Launcher.md -------------------------------------------------------------------------------- /python-client/docs/RuntimeIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/RuntimeIdentifier.md -------------------------------------------------------------------------------- /python-client/docs/ScriptingLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ScriptingLanguage.md -------------------------------------------------------------------------------- /python-client/docs/ShellCodeLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ShellCodeLauncher.md -------------------------------------------------------------------------------- /python-client/docs/StringIdentityUserRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/StringIdentityUserRole.md -------------------------------------------------------------------------------- /python-client/docs/TargetIndicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/TargetIndicator.md -------------------------------------------------------------------------------- /python-client/docs/Theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/Theme.md -------------------------------------------------------------------------------- /python-client/docs/ThemeApiApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/ThemeApiApi.md -------------------------------------------------------------------------------- /python-client/docs/TicketType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/TicketType.md -------------------------------------------------------------------------------- /python-client/docs/WmicLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/WmicLauncher.md -------------------------------------------------------------------------------- /python-client/docs/WscriptLauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/docs/WscriptLauncher.md -------------------------------------------------------------------------------- /python-client/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/git_push.sh -------------------------------------------------------------------------------- /python-client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/requirements.txt -------------------------------------------------------------------------------- /python-client/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/setup.py -------------------------------------------------------------------------------- /python-client/swagger_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/__init__.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/__init__.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/command_output_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/command_output_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/covenant_user_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/covenant_user_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/credential_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/credential_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/embedded_resource_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/embedded_resource_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/event_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/event_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/grunt_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/grunt_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/grunt_command_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/grunt_command_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/grunt_task_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/grunt_task_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/grunt_tasking_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/grunt_tasking_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/implant_template_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/implant_template_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/indicator_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/indicator_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/launcher_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/launcher_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/listener_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/listener_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/profile_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/profile_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/reference_assembly_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/reference_assembly_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/reference_source_library_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/reference_source_library_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api/theme_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api/theme_api_api.py -------------------------------------------------------------------------------- /python-client/swagger_client/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/api_client.py -------------------------------------------------------------------------------- /python-client/swagger_client/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/configuration.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/__init__.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/binary_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/binary_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/bridge_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/bridge_listener.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/captured_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/captured_credential.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/captured_hash_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/captured_hash_credential.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/captured_password_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/captured_password_credential.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/captured_ticket_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/captured_ticket_credential.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/code_mirror_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/code_mirror_theme.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/command_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/command_output.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/communication_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/communication_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/covenant_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/covenant_user.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/covenant_user_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/covenant_user_login.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/covenant_user_login_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/covenant_user_login_result.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/covenant_user_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/covenant_user_register.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/credential_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/cscript_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/cscript_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/dot_net_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/dot_net_version.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/download_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/download_event.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/download_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/download_progress.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/embedded_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/embedded_resource.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/event.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/event_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/event_level.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/event_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/event_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/file_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/file_indicator.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_command.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_status.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_task.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_task_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_task_author.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_task_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_task_option.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_tasking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_tasking.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_tasking_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_tasking_status.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/grunt_tasking_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/grunt_tasking_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/hash_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/hash_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/hosted_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/hosted_file.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/http_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/http_listener.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/http_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/http_profile.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/http_profile_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/http_profile_header.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/identity_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/identity_role.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/implant_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/implant_direction.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/implant_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/implant_language.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/implant_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/implant_template.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/indicator.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/indicator_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/indicator_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/install_util_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/install_util_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/integrity_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/integrity_level.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/launcher_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/launcher_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/listener.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/listener_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/listener_status.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/listener_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/listener_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/ms_build_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/ms_build_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/mshta_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/mshta_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/network_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/network_indicator.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/output_kind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/output_kind.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/power_shell_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/power_shell_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/profile.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/profile_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/profile_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/reference_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/reference_assembly.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/reference_source_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/reference_source_library.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/regsvr32_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/regsvr32_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/runtime_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/runtime_identifier.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/scripting_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/scripting_language.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/shell_code_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/shell_code_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/string_identity_user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/string_identity_user_role.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/target_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/target_indicator.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/theme.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/ticket_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/ticket_type.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/wmic_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/wmic_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/models/wscript_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/models/wscript_launcher.py -------------------------------------------------------------------------------- /python-client/swagger_client/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/swagger_client/rest.py -------------------------------------------------------------------------------- /python-client/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test-requirements.txt -------------------------------------------------------------------------------- /python-client/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-client/test/test_binary_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_binary_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_bridge_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_bridge_listener.py -------------------------------------------------------------------------------- /python-client/test/test_captured_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_captured_credential.py -------------------------------------------------------------------------------- /python-client/test/test_captured_hash_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_captured_hash_credential.py -------------------------------------------------------------------------------- /python-client/test/test_captured_password_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_captured_password_credential.py -------------------------------------------------------------------------------- /python-client/test/test_captured_ticket_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_captured_ticket_credential.py -------------------------------------------------------------------------------- /python-client/test/test_code_mirror_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_code_mirror_theme.py -------------------------------------------------------------------------------- /python-client/test/test_command_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_command_output.py -------------------------------------------------------------------------------- /python-client/test/test_command_output_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_command_output_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_communication_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_communication_type.py -------------------------------------------------------------------------------- /python-client/test/test_covenant_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_covenant_user.py -------------------------------------------------------------------------------- /python-client/test/test_covenant_user_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_covenant_user_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_covenant_user_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_covenant_user_login.py -------------------------------------------------------------------------------- /python-client/test/test_covenant_user_login_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_covenant_user_login_result.py -------------------------------------------------------------------------------- /python-client/test/test_covenant_user_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_covenant_user_register.py -------------------------------------------------------------------------------- /python-client/test/test_credential_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_credential_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_credential_type.py -------------------------------------------------------------------------------- /python-client/test/test_cscript_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_cscript_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_dot_net_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_dot_net_version.py -------------------------------------------------------------------------------- /python-client/test/test_download_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_download_event.py -------------------------------------------------------------------------------- /python-client/test/test_download_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_download_progress.py -------------------------------------------------------------------------------- /python-client/test/test_embedded_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_embedded_resource.py -------------------------------------------------------------------------------- /python-client/test/test_embedded_resource_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_embedded_resource_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_event.py -------------------------------------------------------------------------------- /python-client/test/test_event_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_event_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_event_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_event_level.py -------------------------------------------------------------------------------- /python-client/test/test_event_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_event_type.py -------------------------------------------------------------------------------- /python-client/test/test_file_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_file_indicator.py -------------------------------------------------------------------------------- /python-client/test/test_grunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_command.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_command_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_command_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_status.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_task.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_task_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_task_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_task_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_task_author.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_task_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_task_option.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_tasking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_tasking.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_tasking_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_tasking_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_tasking_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_tasking_status.py -------------------------------------------------------------------------------- /python-client/test/test_grunt_tasking_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_grunt_tasking_type.py -------------------------------------------------------------------------------- /python-client/test/test_hash_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_hash_type.py -------------------------------------------------------------------------------- /python-client/test/test_hosted_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_hosted_file.py -------------------------------------------------------------------------------- /python-client/test/test_http_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_http_listener.py -------------------------------------------------------------------------------- /python-client/test/test_http_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_http_profile.py -------------------------------------------------------------------------------- /python-client/test/test_http_profile_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_http_profile_header.py -------------------------------------------------------------------------------- /python-client/test/test_identity_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_identity_role.py -------------------------------------------------------------------------------- /python-client/test/test_implant_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_implant_direction.py -------------------------------------------------------------------------------- /python-client/test/test_implant_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_implant_language.py -------------------------------------------------------------------------------- /python-client/test/test_implant_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_implant_template.py -------------------------------------------------------------------------------- /python-client/test/test_implant_template_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_implant_template_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_indicator.py -------------------------------------------------------------------------------- /python-client/test/test_indicator_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_indicator_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_indicator_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_indicator_type.py -------------------------------------------------------------------------------- /python-client/test/test_install_util_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_install_util_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_integrity_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_integrity_level.py -------------------------------------------------------------------------------- /python-client/test/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_launcher_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_launcher_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_launcher_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_launcher_type.py -------------------------------------------------------------------------------- /python-client/test/test_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_listener.py -------------------------------------------------------------------------------- /python-client/test/test_listener_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_listener_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_listener_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_listener_status.py -------------------------------------------------------------------------------- /python-client/test/test_listener_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_listener_type.py -------------------------------------------------------------------------------- /python-client/test/test_ms_build_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_ms_build_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_mshta_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_mshta_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_network_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_network_indicator.py -------------------------------------------------------------------------------- /python-client/test/test_output_kind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_output_kind.py -------------------------------------------------------------------------------- /python-client/test/test_power_shell_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_power_shell_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_profile.py -------------------------------------------------------------------------------- /python-client/test/test_profile_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_profile_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_profile_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_profile_type.py -------------------------------------------------------------------------------- /python-client/test/test_reference_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_reference_assembly.py -------------------------------------------------------------------------------- /python-client/test/test_reference_assembly_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_reference_assembly_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_reference_source_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_reference_source_library.py -------------------------------------------------------------------------------- /python-client/test/test_reference_source_library_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_reference_source_library_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_regsvr32_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_regsvr32_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_runtime_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_runtime_identifier.py -------------------------------------------------------------------------------- /python-client/test/test_scripting_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_scripting_language.py -------------------------------------------------------------------------------- /python-client/test/test_shell_code_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_shell_code_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_string_identity_user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_string_identity_user_role.py -------------------------------------------------------------------------------- /python-client/test/test_target_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_target_indicator.py -------------------------------------------------------------------------------- /python-client/test/test_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_theme.py -------------------------------------------------------------------------------- /python-client/test/test_theme_api_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_theme_api_api.py -------------------------------------------------------------------------------- /python-client/test/test_ticket_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_ticket_type.py -------------------------------------------------------------------------------- /python-client/test/test_wmic_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_wmic_launcher.py -------------------------------------------------------------------------------- /python-client/test/test_wscript_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/test/test_wscript_launcher.py -------------------------------------------------------------------------------- /python-client/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/python-client/tox.ini -------------------------------------------------------------------------------- /setup_covenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/setup_covenant.py -------------------------------------------------------------------------------- /supporting/Create-Phishing-Powershell-Encoded.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/Create-Phishing-Powershell-Encoded.ps1 -------------------------------------------------------------------------------- /supporting/bs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/bs.ps1 -------------------------------------------------------------------------------- /supporting/covenant.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/covenant.service -------------------------------------------------------------------------------- /supporting/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/haproxy.cfg -------------------------------------------------------------------------------- /supporting/install/cov-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/install/cov-install.sh -------------------------------------------------------------------------------- /supporting/metasploit/bind_meterpreter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/metasploit/bind_meterpreter.sh -------------------------------------------------------------------------------- /supporting/metasploit/bind_meterpreter_shellcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/metasploit/bind_meterpreter_shellcode.sh -------------------------------------------------------------------------------- /supporting/metasploit/commands.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/metasploit/commands.rc -------------------------------------------------------------------------------- /supporting/metasploit/envenomate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/supporting/metasploit/envenomate.sh -------------------------------------------------------------------------------- /supporting/metasploit/msfconsole.rc: -------------------------------------------------------------------------------- 1 | setg prompt [%T] %L (s:%S j:%J) 2 | resource ~/.msf4/commands.rc 3 | 4 | -------------------------------------------------------------------------------- /templates/.grunt_templates: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/Brute.json.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/templates/Brute.json.default -------------------------------------------------------------------------------- /templates/GruntBridge.json.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/templates/GruntBridge.json.default -------------------------------------------------------------------------------- /templates/GruntHTTP.json.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/templates/GruntHTTP.json.default -------------------------------------------------------------------------------- /templates/GruntSMB.json.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclow/covenant_mgmt/HEAD/templates/GruntSMB.json.default --------------------------------------------------------------------------------