Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
h2buster — Uno scanner di directory web brute-force, multithread e ricorsivo, su HTTP/2. | Kitploit
Strumenti/GitHubGitHub/00xc/h2buster
RicognizioneScanner di VulnerabilitàScanner di Vulnerabilità WebRaccolta InformazioniSicurezza WebPenetration TestingArchived
GitHub00xc/h2buster

h2buster

Uno scanner di directory web brute-force, multithread e ricorsivo, su HTTP/2.

Vedi Repository
37126 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

h2buster (v0.4d)

Un veloce scanner multithread ricorsivo per directory web con forza bruta su HTTP/2 che utilizza hyper, ispirato a Gobuster.

Caratteristiche

  • Veloce e portatile: installa hyper ed eseguilo.
  • Scansione multiconnessione.
  • Connessioni multi-thread.
  • Scalabile: le scansioni possono essere configurate da passive ad aggressive.
  • Supporto h2 e h2c.
  • Profondità di ricorsione delle directory configurabile.
  • Scansione di robots.txt.
  • Multipiattaforma: funziona sia su *nix che su Windows.

Installazione

Richiede Python 3.6. Devi installare solo una dipendenza. Se non hai hyper, esegui:
pip3 install -r requirements.txt

Utilizzo

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.

Esempio

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'

Questa riga esegue la scansione di www.google.com su 4 connessioni con 15 thread ciascuna, effettuando richieste GET sulla wordlist di input small.txt. Ogni voce della wordlist viene inviata così com'è e anche con una barra (/) aggiunta. Le directory trovate non vengono scansionate ricorsivamente (profondità 1). La stringa h2buster viene inviata come user agent. I codici di risposta 404 e 301 non vengono mostrati nell'output.

Contribuire

Controlla il file TODO per un elenco di funzionalità che necessitano di lavoro.

Scarica lo strumento