Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
h2buster — スレッド化され、再帰的な、HTTP/2上のWebディレクトリブルートフォーススキャナー。 | Kitploit
ツール/GitHubGitHub/00xc/h2buster
偵察脆弱性スキャナーウェブ脆弱性スキャナー情報収集ウェブセキュリティペネトレーションテストArchived
GitHub00xc/h2buster

h2buster

スレッド化され、再帰的な、HTTP/2上のWebディレクトリブルートフォーススキャナー。

リポジトリを見る
37126年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

h2buster (v0.4d)

高速・マルチスレッド・再帰的なHTTP/2上のWebディレクトリブルートフォーススキャナー。hyper を使用し、Gobuster に触発されました。

機能

  • 高速かつポータブル – hyper をインストールして実行するだけ。
  • マルチコネクションスキャン。
  • マルチスレッド接続。
  • スケーラブル: 設定次第で控えめにも攻撃的にもスキャン可能。
  • h2 および h2c に対応。
  • 設定可能なディレクトリ再帰深度。
  • robots.txt スキャン。
  • マルチプラットフォーム: *nix と Windows の両方で動作。

インストール

Python 3.6 が必要です。依存パッケージは1つだけインストールすれば十分です。hyper がまだない場合は、以下を実行してください。
pip3 install -r requirements.txt

使い方

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.

例

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'

これは www.google.com を、4つのコネクション(それぞれ15スレッド)でスキャンし、入力ワードリスト small.txt に対して GET リクエストを実行します。ワードリストの各エントリはそのまま、およびスラッシュ (/) を付けて送信されます。発見されたディレクトリは再帰的にスキャンされません(深度1)。ユーザーエージェントとして文字列 h2buster が送信されます。レスポンスコード404と301は出力に表示されません。

貢献について

作業が必要な機能の一覧については TODO ファイルを確認してください。

ツールをダウンロード