├── Core ├── Utilities │ └── Shell │ │ ├── fileless_exec │ │ └── http │ │ │ ├── src.bat │ │ │ ├── src.ps1 │ │ │ └── src.sh │ │ └── upload │ │ └── http │ │ ├── src.bat │ │ ├── src.ps1 │ │ └── src.sh ├── common.py ├── logging.py ├── payload_templates │ ├── linux │ │ ├── hoaxshell │ │ │ ├── sh_curl.py │ │ │ └── sh_curl_https.py │ │ └── reverse_tcp │ │ │ ├── awk_rshell.py │ │ │ ├── bash_read_line.py │ │ │ ├── perl_no_sh.py │ │ │ ├── php_passthru.py │ │ │ ├── php_popen.py │ │ │ ├── php_proc_open.py │ │ │ ├── python3.py │ │ │ ├── python3_v2.py │ │ │ ├── ruby.py │ │ │ └── ruby_no_sh.py │ └── windows │ │ ├── hoaxshell │ │ ├── cmd_curl.py │ │ ├── cmd_curl_https.py │ │ ├── powershell_iex.py │ │ ├── powershell_iex_constr_lang.py │ │ ├── powershell_iex_constr_lang_https.py │ │ ├── powershell_iex_https.py │ │ ├── powershell_outfile.py │ │ ├── powershell_outfile_constr_lang.py │ │ ├── powershell_outfile_constr_lang_https.py │ │ └── powershell_outfile_https.py │ │ └── reverse_tcp │ │ ├── powershell.py │ │ ├── powershell_v2.py │ │ └── python3.py ├── resources │ └── external │ │ └── scripts │ │ ├── Invoke-ConPtyShell.ps1 │ │ └── Invoke-ConPtyShell_LICENSE.md ├── settings.py └── villain_core.py ├── LICENSE.md ├── README.md ├── Usage_Guide.md ├── Villain.py └── requirements.txt /Core/Utilities/Shell/fileless_exec/http/src.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/Utilities/Shell/fileless_exec/http/src.bat -------------------------------------------------------------------------------- /Core/Utilities/Shell/fileless_exec/http/src.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/Utilities/Shell/fileless_exec/http/src.ps1 -------------------------------------------------------------------------------- /Core/Utilities/Shell/fileless_exec/http/src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/Utilities/Shell/fileless_exec/http/src.sh -------------------------------------------------------------------------------- /Core/Utilities/Shell/upload/http/src.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/Utilities/Shell/upload/http/src.bat -------------------------------------------------------------------------------- /Core/Utilities/Shell/upload/http/src.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/Utilities/Shell/upload/http/src.ps1 -------------------------------------------------------------------------------- /Core/Utilities/Shell/upload/http/src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/Utilities/Shell/upload/http/src.sh -------------------------------------------------------------------------------- /Core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/common.py -------------------------------------------------------------------------------- /Core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/logging.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/hoaxshell/sh_curl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/hoaxshell/sh_curl.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/hoaxshell/sh_curl_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/hoaxshell/sh_curl_https.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/awk_rshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/awk_rshell.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/bash_read_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/bash_read_line.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/perl_no_sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/perl_no_sh.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/php_passthru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/php_passthru.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/php_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/php_popen.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/php_proc_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/php_proc_open.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/python3.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/python3_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/python3_v2.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/ruby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/ruby.py -------------------------------------------------------------------------------- /Core/payload_templates/linux/reverse_tcp/ruby_no_sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/linux/reverse_tcp/ruby_no_sh.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/cmd_curl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/cmd_curl.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/cmd_curl_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/cmd_curl_https.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_iex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_iex.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_iex_constr_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_iex_constr_lang.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_iex_constr_lang_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_iex_constr_lang_https.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_iex_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_iex_https.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_outfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_outfile.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_outfile_constr_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_outfile_constr_lang.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_outfile_constr_lang_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_outfile_constr_lang_https.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/hoaxshell/powershell_outfile_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/hoaxshell/powershell_outfile_https.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/reverse_tcp/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/reverse_tcp/powershell.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/reverse_tcp/powershell_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/reverse_tcp/powershell_v2.py -------------------------------------------------------------------------------- /Core/payload_templates/windows/reverse_tcp/python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/payload_templates/windows/reverse_tcp/python3.py -------------------------------------------------------------------------------- /Core/resources/external/scripts/Invoke-ConPtyShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/resources/external/scripts/Invoke-ConPtyShell.ps1 -------------------------------------------------------------------------------- /Core/resources/external/scripts/Invoke-ConPtyShell_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/resources/external/scripts/Invoke-ConPtyShell_LICENSE.md -------------------------------------------------------------------------------- /Core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/settings.py -------------------------------------------------------------------------------- /Core/villain_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Core/villain_core.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/README.md -------------------------------------------------------------------------------- /Usage_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Usage_Guide.md -------------------------------------------------------------------------------- /Villain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/Villain.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3l3machus/Villain/HEAD/requirements.txt --------------------------------------------------------------------------------