├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SharPyShell.py ├── agent ├── runtime_compiler │ ├── compile_command.txt │ ├── runtime_compiler_aes.cs │ ├── runtime_compiler_aes.dll │ ├── runtime_compiler_xor.cs │ └── runtime_compiler_xor.dll ├── template_encrypted_dll.aspx ├── template_encrypted_dll_ulong_compression.aspx ├── template_raw_aes.aspx └── template_raw_xor.aspx ├── core ├── ChannelAES.py ├── ChannelXOR.py ├── Environment.py ├── Generate.py ├── Module.py ├── Request.py ├── SharPyShellPrompt.py ├── __init__.py └── config.py ├── logo.png ├── modules ├── __init__.py ├── dll │ ├── messagebox_msf.dll │ └── powerkatz.dll ├── download.py ├── exe_modules │ ├── JuicyPotato.exe │ └── mimikatz.exe ├── exec_cmd.py ├── exec_ps.py ├── inject_dll_reflective.py ├── inject_dll_srdi.py ├── inject_shellcode.py ├── invoke_ps_module.py ├── invoke_ps_module_as.py ├── lateral_wmi.py ├── mimikatz.py ├── net_portscan.py ├── privesc_juicy_potato.py ├── privesc_powerup.py ├── ps_modules │ ├── Get-System.ps1 │ ├── Invoke-Mimikatz.ps1 │ ├── Invoke-Portscan.ps1 │ ├── PowerUp.ps1 │ └── SharPyShell_Test.ps1 ├── reflective_dll │ ├── juicypotato_reflective.dll │ └── messagebox_reflective.dll ├── runas.py ├── runas_ps.py └── upload.py ├── output └── .gitkeep ├── requirements.txt └── utils ├── Singleton.py ├── __init__.py ├── gzip_utils.py ├── minify_code.py ├── normalize_args.py ├── prettify.py ├── random_string.py └── shellcode.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/README.md -------------------------------------------------------------------------------- /SharPyShell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/SharPyShell.py -------------------------------------------------------------------------------- /agent/runtime_compiler/compile_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/runtime_compiler/compile_command.txt -------------------------------------------------------------------------------- /agent/runtime_compiler/runtime_compiler_aes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/runtime_compiler/runtime_compiler_aes.cs -------------------------------------------------------------------------------- /agent/runtime_compiler/runtime_compiler_aes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/runtime_compiler/runtime_compiler_aes.dll -------------------------------------------------------------------------------- /agent/runtime_compiler/runtime_compiler_xor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/runtime_compiler/runtime_compiler_xor.cs -------------------------------------------------------------------------------- /agent/runtime_compiler/runtime_compiler_xor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/runtime_compiler/runtime_compiler_xor.dll -------------------------------------------------------------------------------- /agent/template_encrypted_dll.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/template_encrypted_dll.aspx -------------------------------------------------------------------------------- /agent/template_encrypted_dll_ulong_compression.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/template_encrypted_dll_ulong_compression.aspx -------------------------------------------------------------------------------- /agent/template_raw_aes.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/template_raw_aes.aspx -------------------------------------------------------------------------------- /agent/template_raw_xor.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/agent/template_raw_xor.aspx -------------------------------------------------------------------------------- /core/ChannelAES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/ChannelAES.py -------------------------------------------------------------------------------- /core/ChannelXOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/ChannelXOR.py -------------------------------------------------------------------------------- /core/Environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/Environment.py -------------------------------------------------------------------------------- /core/Generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/Generate.py -------------------------------------------------------------------------------- /core/Module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/Module.py -------------------------------------------------------------------------------- /core/Request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/Request.py -------------------------------------------------------------------------------- /core/SharPyShellPrompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/SharPyShellPrompt.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/core/config.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/logo.png -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/dll/messagebox_msf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/dll/messagebox_msf.dll -------------------------------------------------------------------------------- /modules/dll/powerkatz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/dll/powerkatz.dll -------------------------------------------------------------------------------- /modules/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/download.py -------------------------------------------------------------------------------- /modules/exe_modules/JuicyPotato.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/exe_modules/JuicyPotato.exe -------------------------------------------------------------------------------- /modules/exe_modules/mimikatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/exe_modules/mimikatz.exe -------------------------------------------------------------------------------- /modules/exec_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/exec_cmd.py -------------------------------------------------------------------------------- /modules/exec_ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/exec_ps.py -------------------------------------------------------------------------------- /modules/inject_dll_reflective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/inject_dll_reflective.py -------------------------------------------------------------------------------- /modules/inject_dll_srdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/inject_dll_srdi.py -------------------------------------------------------------------------------- /modules/inject_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/inject_shellcode.py -------------------------------------------------------------------------------- /modules/invoke_ps_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/invoke_ps_module.py -------------------------------------------------------------------------------- /modules/invoke_ps_module_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/invoke_ps_module_as.py -------------------------------------------------------------------------------- /modules/lateral_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/lateral_wmi.py -------------------------------------------------------------------------------- /modules/mimikatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/mimikatz.py -------------------------------------------------------------------------------- /modules/net_portscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/net_portscan.py -------------------------------------------------------------------------------- /modules/privesc_juicy_potato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/privesc_juicy_potato.py -------------------------------------------------------------------------------- /modules/privesc_powerup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/privesc_powerup.py -------------------------------------------------------------------------------- /modules/ps_modules/Get-System.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/ps_modules/Get-System.ps1 -------------------------------------------------------------------------------- /modules/ps_modules/Invoke-Mimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/ps_modules/Invoke-Mimikatz.ps1 -------------------------------------------------------------------------------- /modules/ps_modules/Invoke-Portscan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/ps_modules/Invoke-Portscan.ps1 -------------------------------------------------------------------------------- /modules/ps_modules/PowerUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/ps_modules/PowerUp.ps1 -------------------------------------------------------------------------------- /modules/ps_modules/SharPyShell_Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/ps_modules/SharPyShell_Test.ps1 -------------------------------------------------------------------------------- /modules/reflective_dll/juicypotato_reflective.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/reflective_dll/juicypotato_reflective.dll -------------------------------------------------------------------------------- /modules/reflective_dll/messagebox_reflective.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/reflective_dll/messagebox_reflective.dll -------------------------------------------------------------------------------- /modules/runas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/runas.py -------------------------------------------------------------------------------- /modules/runas_ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/runas_ps.py -------------------------------------------------------------------------------- /modules/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/modules/upload.py -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/Singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/Singleton.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/gzip_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/gzip_utils.py -------------------------------------------------------------------------------- /utils/minify_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/minify_code.py -------------------------------------------------------------------------------- /utils/normalize_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/normalize_args.py -------------------------------------------------------------------------------- /utils/prettify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/prettify.py -------------------------------------------------------------------------------- /utils/random_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/random_string.py -------------------------------------------------------------------------------- /utils/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/SharPyShell/HEAD/utils/shellcode.py --------------------------------------------------------------------------------