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
cfengine-CVE_2015_0235 — Exploit de desbordamiento de búfer en gethostbyname*() de glibc - CVE-2015-0235 https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability | Kitploit
Herramientas/GitHubGitHub/nickanderson/cfengine-cve_2015_0235
Análisis de VulnerabilidadesExplotaciónPruebas de PenetraciónRed TeamingDesarrollo de PayloadsExplotación de Binarios
GitHubnickanderson/cfengine-cve_2015_0235

cfengine-CVE_2015_0235

Exploit de desbordamiento de búfer en gethostbyname*() de glibc - CVE-2015-0235 https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability

Ver Repositorio
11hace 11 añosAún no revisado

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
  • CVE_2015_0235 Exploit de desbordamiento de búfer en gethostbyname*() de glibc - CVE-2015-0235 https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability

Obtenido originalmente del mensaje de Ben Bomgardner a la lista de correo help-cfengine. https://groups.google.com/forum/#!topic/help-cfengine/tWjOlO19Mrw

  • Integración en masterfiles

** Descarga la política y extráela en tus masterfiles

#+begin_src sh MASTERFILES=/home/nickanderson/CFEngine/masterfiles wget https://github.com/nickanderson/CVE_2015_0235/archive/master.tar.gz -O /tmp/CVE_2015_0235.tar.gz tar --directory "$MASTERFILES/services" -zxvf /tmp/CVE_2015_0235.tar.gz #+end_src

** El exploit de prueba necesita ser compilado.

#+begin_src sh cd $MASTERFILES/services/CVE_2015_2035/bins gcc GHOST.c -o GHOST_CVE-2015-0235 #+end_src

** Incluye la ruta a def.cf en inputs

#+begin_src cfengine body common control { inputs => { # Reports @(cfengine_reports.inputs),

root@kitploit:~
                # If you want to activate this policy from autorun,
                # then it needs to be included before autorun
                # inptus.
                "services/CVE_2015_0235/def.cf",
                
                # autorun system
                @(services_autorun.inputs),
    };

} #+end_src

  • Actívalo en tu política (con autorun)

Crea /masterfiles/services/autorun/CVE_2015_0235.cf con el siguiente contenido.

#+begin_src cfengine bundle agent CVE_2015_0235 { meta: # Make sure we get activated "tags" slist => { "autorun" };

root@kitploit:~
classes: any:: # Enable the features we want "enable_CVE_2015_0235_inventory" expression => "any"; methods: # Make sure that the control bundle has converged "CVE_2015_0235" usebundle => CVE_2015_0235_def_file_control, comment => "Activate each enabled policy"; # Activate the features we want if they are enabled enable_CVE_2015_0235_inventory:: "CVE_2015_0235" usebundle => CVE_2015_0235_inventory, comment => "We want to know where we are vulnerable"; reports: DEBUG|DEBUG_CVE_2015_0235:: "Activated: '$(this.bundle)' in '$(this.promise_filename)'";

} #+end_src

Descargar herramienta