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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
censys-enumeration — Censys上のSSL/TLS証明書データセットを使用して、指定されたドメインのサブドメイン/メールアドレスを抽出するスクリプト。 | Kitploit
ツール/GitHubGitHub/0xbharath/censys-enumeration
OSINT (オープンソースインテリジェンス)偵察情報収集サブドメイン列挙メール収集
GitHub0xbharath/censys-enumeration

censys-enumeration

Censys上のSSL/TLS証明書データセットを使用して、指定されたドメインのサブドメイン/メールアドレスを抽出するスクリプト。

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

人気

すべて見る →

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

すべてのツールを探索

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

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

Censys 列挙

  • Censys の SSL/TLS 証明書データセットを使用して、指定されたドメインのサブドメイン/メールアドレスを抽出するスクリプトです
  • 出力は JSON 形式です

デモ

script-in-action

スクリーンショット

非冗長モード

non-verbose

冗長モード

verbose

JSON 出力のサンプル

non-verbose

サードパーティ製パッケージの依存関係

censys

click

セットアップ

  • このリポジトリをクローンします
root@kitploit:~
$ git clone [email protected]:yamakira/censys-enumeration.git
  • 依存関係をインストールします
root@kitploit:~
$ pip install -r requirements.txt
  • https://censys.io でアカウントを作成し、Censys API ID と Censys API secret を取得します

  • Censys API ID と Censys API secret を、それぞれ OS の環境変数 CENSYS_API_ID と CENSYS_API_SECRET として追加します。Linux では、次のようなコマンドを使用して設定できます

root@kitploit:~
$ export CENSYS_API_SECRET="iySd1n0l2JLnHTMisbFHzxClFuE0"
  • ヘルプメニューを確認します
root@kitploit:~
$ python censys_enumeration.py --help                                                                                                 
Usage: censys_enumeration.py [OPTIONS] FILE

Options:
  --verbose                       Verbose output
  --subdomains / --no-subdomains  Enable/Disable subdomain enumeration
  --emails / --no-emails          Enable/Disable email enumeration
  --help                          Show this message and exit.

使用方法

  • サブドメインとメールアドレスの列挙
root@kitploit:~
$ python censys_enumeration.py domains.txt
  • サブドメインの列挙のみ
root@kitploit:~
$ python censys_enumeration.py --no-emails domains.txt 
  • メールアドレスの列挙のみ
root@kitploit:~
$ python censys_enumeration.py --no-sudomains domains.txt 
  • 冗長出力
root@kitploit:~
$ python censys_enumeration.py --verbose domains.txt 
  • カスタムファイルに出力

$ python censys_enumeration.py --verbose --outfile results.json domains.txt

root@kitploit:~
ツールをダウンロード