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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
columbus-server — APIファーストのサブドメイン発見サービス。Certificate Transparencyログを使用して、REST API経由で高速かつ受動的にサブドメインを列挙し、JSONまたはプレーンテキスト形式で出力します。 | Kitploit
ツール/GitHubGitHub/elmasy-com/columbus-server
OSINT (オープンソースインテリジェンス)偵察DNSおよびサブドメイン列挙APIセキュリティテスト情報収集サブドメイン列挙Archived
GitHubelmasy-com/columbus-server

columbus-server

APIファーストのサブドメイン発見サービス。Certificate Transparencyログを使用して、REST API経由で高速かつ受動的にサブドメインを列挙し、JSONまたはプレーンテキスト形式で出力します。

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

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
共有
ウェブサイト

Columbus server

このリポジトリは非推奨です!

‼️ サーバーコンポーネントは https://github.com/elmasy-com/columbus に移動されました。


Columbus Project は API ファーストのサブドメイン発見サービスであり、高度な機能を備えた驚くほど高速なサブドメイン列挙サービスです。

Subdomain Lookup Columbus は tesla.com の 638 のサブドメインを 0.231 秒で返しました。

使用方法

デフォルトでは、Columbus はサブドメインのみを JSON 文字列配列で返します。

root@kitploit:~
curl 'https://columbus.elmasy.com/lookup/github.com'

しかし、bash 愛好家のために、JSON を扱いたくなく、改行で区切られたリストが欲しい場合は、Accept: text/plain ヘッダーを含めてください。

root@kitploit:~
DOMAIN="github.com"

curl -s -H "Accept: text/plain" "https://columbus.elmasy.com/lookup/$DOMAIN" | \
while read SUB
do
        if [[ "$SUB" == "" ]]
        then
                HOST="$DOMAIN"
        else
                HOST="${SUB}.${DOMAIN}"
        fi
        echo "$HOST"
done

詳細は、機能 または API ドキュメント をご確認ください。

エントリー

現在、エントリーは Certificate Transparency から取得しています。

コマンドライン

root@kitploit:~
Usage of columbus-server:
  -check
    	Check for updates.
  -config string
    	Path to the config file.
  -version
    	Print version informations.

-check: GitHub で最新バージョンを確認します。 更新が不要な場合は up-to-date を表示し、0 を返します。 新しいリリースがある場合は最新のタグ(例:v0.9.1)を表示し、1 を返します。 エラーの場合はエラーメッセージを表示し、2 を返します。

ビルド

root@kitploit:~
git clone https://github.com/elmasy-com/columbus-server
make build

インストール

新しいユーザーを作成します:

root@kitploit:~
adduser --system --no-create-home --disabled-login columbus-server

新しいグループを作成します:

root@kitploit:~
addgroup --system columbus

新しいユーザーを新しいグループに追加します:

root@kitploit:~
usermod -aG columbus columbus-server

バイナリを /usr/bin/columbus-server にコピーします。

実行可能にします:

root@kitploit:~
chmod +x /usr/bin/columbus-server

ディレクトリを作成します:

root@kitploit:~
mkdir /etc/columbus

設定ファイルを /etc/columbus/server.conf にコピーします。

パーミッションを 0600 に設定します。

root@kitploit:~
chmod -R 0600 /etc/columbus

設定ファイルの所有者を設定します:

root@kitploit:~
chown -R columbus-server:columbus /etc/columbus

サービスのファイルをインストールします(例:/etc/systemd/system/columbus-server.service)。

root@kitploit:~
cp columbus-server.service /etc/systemd/system/

systemd を再読み込みします:

root@kitploit:~
systemctl daemon-reload

Columbus を起動します:

root@kitploit:~
systemctl start columbus-server

Columbus を自動起動したい場合:

root@kitploit:~
systemctl enable columbus-server
ツールをダウンロード