Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
cfengine-CVE_2015_0235 — Exploit de estouro de buffer em gethostbyname*() no glibc - CVE-2015-0235 https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability | Kitploit
Ferramentas/GitHubGitHub/nickanderson/cfengine-cve_2015_0235
Análise de VulnerabilidadesExploraçãoTestes de PenetraçãoRed TeamingDesenvolvimento de PayloadsExploração de Binários
GitHubnickanderson/cfengine-cve_2015_0235

cfengine-CVE_2015_0235

Exploit de estouro de buffer em gethostbyname*() no glibc - CVE-2015-0235 https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar
Ver Repositório
1há 11 anosAinda não revisado
  • CVE_2015_0235 Exploit de estouro de buffer em gethostbyname*() no glibc - CVE-2015-0235 https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability

Originalmente proveniente do post de Ben Bomgardner na lista de discussão help-cfengine. https://groups.google.com/forum/#!topic/help-cfengine/tWjOlO19Mrw

  • Integração no masterfiles

** Baixe a política e extraia-a para seus 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

** O exploit de teste precisa ser compilado.

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

** Inclua o caminho para def.cf em 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

  • Ative-o na sua política (com autorun)

Crie /masterfiles/services/autorun/CVE_2015_0235.cf com o seguinte conteúdo.

#+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

Baixar ferramenta