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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/a3h1nt/sububy
OSINT (オープンソースインテリジェンス)偵察DNSおよびサブドメイン列挙情報収集サブドメイン列挙
GitHuba3h1nt/sububy

Sububy

モジュール式サブドメイン列挙スイート。証明書透明性、DNSブルートフォース、APIベースの探索に対応。後処理モジュールとして、ソート、生存ホスト検出、スクリーンショット取得、HTTP情報取得を含む。

リポジトリを見る
7151年前未レビュー

人気

すべて見る →

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

すべてのツールを探索

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

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

Sububy

SububyはRubyで書かれたワンストップサブドメイン列挙スイートです。精度と品質に重点を置き、ツールの実行フローに従わなくても個別にモジュールにアクセスできる柔軟性があり、ワークフローに統合できます。

Sububyのロゴ

Sububyには合計9つのモジュールがあり、この10のうち、6つは列挙用で、残りは列挙後の操作を実行します。

カテゴリモジュール説明
列挙Cert証明書透過性ログからサブドメインを取得します。
Brute提供されたワードリストを使用してサブドメインをブルートフォースします。
DnsdDnsDumpsterからサブドメインを取得します(APIキーが必要:無料)。
VtotalVirusTotalからサブドメインを取得します(APIキーが必要:無料)。
WebArchInternet Web Archiveからサブドメインを取得します。
Csp特定されたライブドメインのCSPからサブドメインを取得します。
列挙後Sort特定されたサブドメインを重複やターゲットドメイン名に属さないホストに対してソートします。
Liveアクティブに動作しているウェブサーバーを持つサブドメインを特定します。
SshotHTTPおよびHTTPSプロトコルを使用してスクリーンショットを撮ります。
Info応答ステータスコードや応答ヘッダーなどの基本的なHTTP情報を取得できます。

インストール

  1. ツールとgemsをインストールします
root@kitploit:~
git clone https://github.com/A3h1nt/Sububy.git
cd Sububy
bundle install 
  1. APIキーをSububy.rbで設定します。次のURLから入手できます。
  • DnsDumpster
  • VirusTotal
  1. 実行します
root@kitploit:~
ruby Sububy.rb <domain> <cn> <wordlist> <output-dir>

実行例

個別モジュールへのアクセス

Sububyのモジュールは、ツール全体を何度も実行しなくても個別にアクセスできるように書かれています。個別のモジュールを使用する前に、Rubyシェルでファイルをロードする必要があります。ターミナルでirbと入力してRubyシェルを起動し、Sububyファイルをロードします。

root@kitploit:~
irb(main):002:0> require_relative 'Sububy.rb'
irb(main):002:0> # Set the output directory
irb(main):002:0> $output_dir = '/path/to/output_dir'

1. 列挙モジュール

サブドメインのみを列挙したいですか?

root@kitploit:~
Cert.get(domain) #-> cert.txt
Brute.bruteforce(domain,wordlist) #-> brute.txt
Dnsd.getsub(domain) #-> dnsd.txt
Vtotal.getsub(domain) #-> vtotal.txt
WebArch.get(domain) #-> webarchive.txt

2. ソートモジュール

すでにサブドメインのリストがあり、ソートが必要ですか?

root@kitploit:~
Sort.domain(domain,file) #-> returns identified_host.txt with domain name mentioned in subdomain
Sort.uniq(file1,file2) #-> combine and returns unique subdomains 

3. ライブモジュール

すでにサブドメインのリストがあり、ライブのものを特定したいですか?

root@kitploit:~
Live.get(host_file) #-> returns live_host.txt with list of alive host

4. スクリーンショットモジュール

すでにサブドメインのリストがあり、スクリーンショットを撮りたいですか?

root@kitploit:~
Sshot.http(host_file) #-> returns http screenshots in http/
Sshot.https(host_file) #-> returns https screenshoots in https/

5. 情報モジュール

サブドメインに関する詳細情報が必要ですか?

root@kitploit:~
Info.info "hosts.txt" #-> Initiates the info module, you need to run this before you can use other methods
Info.headers "hostname" #-> Returns response headers for a particular host
Info.headersall #-> Returns response headers for all hosts specified in the file
Info.status "hostname" #-> Returns response status code for a particular host
Info.statusall #-> Returns response status for all hosts specified in the file
Info.title "hostname" #-> Returns webpage title for a particular host
Info.titleall #-> Returns webpage title for all hosts specified in the file
Info.comments #-> Writes scaraped comments to file
Info.links #-> Writes scraped links to file

変数

Sububyはデータを格納するためにいくつかのグローバル変数を使用しており、これらの変数に直接アクセスすることもできます。

root@kitploit:~
$dnsdumpster_api_key  # API key for dnsdumpster
$virustotal_api_key   # API key for virustotal
$live_host            # Array of live host
$csp_list = []        # Array of host identified from CSP
$output_dir           # Path to output directory

貢献方法

  • 新機能の追加
  • コード品質の向上
  • エラーの解決

連絡先 : [email protected]

ツールをダウンロード