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
cookbook-update-glibc — recetario para actualizar glibc. CVE-2015-0235(GHOST) | Kitploit
Herramientas/GitHubGitHub/koudaiii-archives/cookbook-update-glibc
Análisis de VulnerabilidadesScripting y AutomatizaciónAuditoría de ConfiguraciónDevSecOpsAprendizaje y EducaciónArchived
GitHubkoudaiii-archives/cookbook-update-glibc

cookbook-update-glibc

recetario para actualizar glibc. CVE-2015-0235(GHOST)

Ver Repositorio
6hace 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

cookbook-update-glibc

Resumen

cookbook para actualizar glibc. CVE-2015-0235 (GHOST)

  • Japonés http://www.walbrix.com/jp/blog/2015-01-ghost.html

  • Inglés http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-0235

Descripción

Actualiza glibc mediante Chef Solo.

  • Atención: este cookbook requiere reinicio.

  • Plataforma: Ubuntu y CentOS.

Requisitos

  • cookbook 'build-essential'
  • cookbook 'apt'
  • cookbook 'yum-epal'

Instalación

  • Ruby 2.1.5 o posterior
  • gem install bundler

Uso

  • bundle install
root@kitploit:~
bundle install
  • configurar nodo
root@kitploit:~
{
  "run_list": [
    "recipe[security_check_glibc]", # establece código de explotación y compila
    "recipe[security_update_glibc]" # reinicia el nodo tras la actualización de glibc
  ]
}
  • configurar prueba (webapp por defecto)
root@kitploit:~
$ mv spec/webapp spec/YourServer
  • prueba
root@kitploit:~
$ rake spec LOGIN_USER=loginuser PASS=userpassword
  • aprovisionar servidor
root@kitploit:~
$ bundle exec knife solo bootstrap YourServer

Desarrollo (Vagrant)

construir y ejecutar prueba

  • instalar virtualbox

  • instalar vagrant

  • bootstrapping

root@kitploit:~
vagrant up
  • agregar configuración ssh
root@kitploit:~
vagrant ssh-config >> ~/.ssh/config
  • cambiar Host
root@kitploit:~
$ vim ~/.ssh/config
- Host default
+ Host webapp
  • prueba
root@kitploit:~
$ rake spec LOGIN_USER=vagrant PASS=vagrant
  • aprovisionar servidor
root@kitploit:~
$ bundle exec knife solo bootstrap webapp
  • Esta máquina Vagrant ya tiene la correspondencia completa. (glibc-2.12-1.149.el6_6.5.x86_64)

Contribución

  • Bifurca este repositorio en GitHub
  • Crea una rama con nombre de característica (como add_component_x)
  • Escribe tu cambio
  • Si es posible, escribe pruebas serverspec para tu cambio y asegúrate de que todas pasen
  • Envía una solicitud de pull mediante GitHub
Descargar herramienta