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
h2buster — Um scanner recursivo e com threads para força bruta de diretórios web sobre HTTP/2. | Kitploit
Ferramentas/GitHubGitHub/00xc/h2buster
ReconhecimentoScanners de VulnerabilidadesScanners de Vulnerabilidades WebColeta de InformaçõesSegurança WebTestes de PenetraçãoArchived
GitHub00xc/h2buster

h2buster

Um scanner recursivo e com threads para força bruta de diretórios web sobre HTTP/2.

Ver Repositório
3712há 6 anosRevisado pelo Kitploit

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

h2buster (v0.4d)

Um scanner rápido, com threads, recursivo e de força bruta de diretórios web sobre HTTP/2 usando hyper, inspirado por Gobuster.

Recursos

  • Rápido e portátil - instale o hyper e execute.
  • Varredura multiconexão.
  • Conexões multithread.
  • Escalável: as varreduras podem ser tão dóceis ou agressivas quanto você configurá-las.
  • Suporte a h2 e h2c.
  • Profundidade de recursão de diretório configurável.
  • Varredura de robots.txt.
  • Multiplataforma: funciona tanto em *nix quanto no Windows.

Instalação

Requer Python 3.6. Você só precisa instalar uma dependência. Se você não tiver o hyper, execute:
pip3 install -r requirements.txt

Uso

root@kitploit:~
usage: h2buster.py [-h] -w wordlist -u target [-c connections=8]
                   [-t threads=20] [-m http_method=HEAD]
                   [-r directory_depth=2] [-hd header_list]
                   [-x extension_list] [-b http_code_list] [-l] [-vr] [-wc]
                   [-rb] [-nc]

h2buster: an HTTP/2 web directory brute-force scanner.

arguments:
  -h, --help            show this help message and exit
  -w wordlist           Directory wordlist
  -u target             Target URL/IP address ([scheme://]host[:port]).
                        Default port is 443 and HTTPS enabled. To specify
                        otherwise, use ':port' and/or 'http://' (port will
                        default to 80 then).
  -c connections=8      Number of HTTP/2 connections.
  -t threads=20         Number of threads per connection.
  -m http_method=HEAD   HTTP request method. Allowed values are GET, HEAD.
  -r directory_depth=2  Maximum recursive directory depth. Minimum is 1,
                        unlimited is 0.
  -hd header_list       List of headers in the format
                        'header->value|header->value...'. For example: -hd
                        'user-agent->Mozilla/5.0|accept-encoding->gzip,
                        deflate, br'.
  -x extension_list     List of file extensions to check separated by a
                        vertical bar (|). For example, -x '.php|.js|blank|/'.
                        The 'blank' keyword signifies no file extension.
                        Default extensions are '/', 'blank', '.html', '.php'
  -b http_code_list     List of blacklisted response codes separated by a
                        vertical bar (|). Directories with these response
                        codes will not be shown in the output. Default is 404.
  -l                    Flag: show response length in output. This overrides
                        the request method to GET.
  -vr                   Flag: force TLS certificate verification.
  -wc                   Flag: request a random path and analyze response to
                        detect false positives (wildcard processing).
  -rb                   Flag: scan for a robots.txt file. If found, a prompt
                        will be displayed asking whether to use the results.
  -nc                   Flag: disable colored output text.

Exemplo

root@kitploit:~
$ python3 h2buster.py -w test/small.txt -u www.google.com -c4 -t15 -m GET -x 'blank|/' -r1 -hd 'user-agent->h2buster' -b '404|301'

Isso irá escanear www.google.com, através de 4 conexões com 15 threads cada, realizando requisições GET sobre a wordlist de entrada, small.txt. Cada entrada na wordlist será enviada como está, bem como com uma barra (/) anexada a ela. Os diretórios encontrados não serão escaneados recursivamente (profundidade é 1). A string h2buster será enviada como user agent. Os códigos de resposta 404 e 301 não serão mostrados na saída.

Contribuindo

Verifique o arquivo TODO para uma lista de funcionalidades que precisam de trabalho.

Baixar ferramenta