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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
httprobe — ドメインのリストを受け取り、動作中のHTTPサーバーとHTTPSサーバーをプローブする | Kitploit
ツール/GitHubGitHub/tomnomnom/httprobe
汎用ユーティリティ偵察情報収集ウェブセキュリティネットワークセキュリティ
GitHubtomnomnom/httprobe

httprobe

ドメインのリストを受け取り、動作中のHTTPサーバーとHTTPSサーバーをプローブする

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

人気

すべて見る →

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

すべてのツールを探索

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

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

httprobe

ドメインのリストを受け取り、動作している http および https サーバーを調査します。

インストール

root@kitploit:~
▶ go install github.com/tomnomnom/httprobe@latest

基本的な使い方

httprobe は stdin から改行区切りのドメインを受け取ります:

root@kitploit:~
▶ cat recon/example/domains.txt
example.com
example.edu
example.net
▶ cat recon/example/domains.txt | httprobe
http://example.com
http://example.net
http://example.edu
https://example.com
https://example.edu
https://example.net

追加プローブ

デフォルトでは、httprobe はポート 80 の HTTP とポート 443 の HTTPS をチェックします。-p フラグでプロトコルとポートのペアを指定すると、追加のプローブを追加できます:

root@kitploit:~
▶ cat domains.txt | httprobe -p http:81 -p https:8443

並行処理

-c フラグで並行処理レベルを設定できます:

root@kitploit:~
▶ cat domains.txt | httprobe -c 50

タイムアウト

-t フラグを使用して、タイムアウトをミリ秒単位で指定すると変更できます:

root@kitploit:~
▶ cat domains.txt | httprobe -t 20000

デフォルトプローブのスキップ

ポート 80 の HTTP やポート 443 の HTTPS をプローブしたくない場合は、-s フラグを使用できます。必要なプローブは -p フラグで指定する必要があります:

root@kitploit:~
▶ cat domains.txt | httprobe -s -p https:8443

HTTPS を優先

HTTPS が動作している場合、HTTP のチェックを気にしないこともあります。--prefer-https フラグでこれを行えます:

root@kitploit:~
▶ cat domains.txt | httprobe --prefer-https

Docker

docker コンテナをビルドします:

root@kitploit:~
▶ docker build -t httprobe .

コンテナを実行し、ファイルの内容をコンテナ内のプロセスの stdin に渡します。-i は、stdin をコンテナ内の httprobe バイナリに正しくマッピングするために必要です。

root@kitploit:~
▶ cat domains.txt | docker run -i httprobe <args>
ツールをダウンロード