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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ADReaper — Go言語で書かれた、Windows Active Directoryのペンテスト向け高速列挙ツール | Kitploit
ツール/GitHubGitHub/m0n1x90/adreaper
偵察情報収集ペネトレーションテスト認証
GitHubm0n1x90/adreaper

ADReaper

Go言語で書かれた、Windows Active Directoryのペンテスト向け高速列挙ツール

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

人気

すべて見る →

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

すべてのツールを探索

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

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

ADReaper

ADReaper は、LDAP クエリを使用して Active Directory 環境を数秒で列挙する、Golang で書かれたツールです。

インストール

Windows/Linux 用のプリコンパイル済み実行可能バイナリを 最新リリース からダウンロードできます。

ソースからインストール

ソースからビルドするには、リポジトリをクローンして GO でビルドします。

root@kitploit:~
$ git clone https://github.com/AidenPearce369/ADReaper
$ cd ADReaper/
$ go build

使用方法

ADReaper は、それぞれに対応する LDAP クエリを実行するさまざまなコマンドを使用して列挙を行います。

root@kitploit:~
PS C:\Users\redteamer\Desktop\shared> .\ADReaper.exe

      -command string

            Command to run
                  dc              - to list domain controllers
                  domain-trust    - to list domain trust
                  users           - to list all users
                  computers       - to list all computers
                  groups          - to list all groups with members
                  spn             - to list service principal objects
                  never-loggedon  - to list users never logged on
                  gpo             - to list group policy objects
                  ou              - to list organizational units
                  ms-sql          - to list MS-SQL servers
                  asreproast      - to list AS-REP roastable accounts
                  unconstrained   - to list Unconstrained Delegated accounts
                  admin-priv      - to list AD objects with admin privilege

      -dc string

            Enter the DC

      -filter string

            Filters to use for users/groups/computers

            list - lists all objects only
            full-data - list all objects with properties
            membership - lists all members from an object

            (default "list")
      -name string

            Pass object name of user/group/computer

      -password string

            Enter the Password

      -user string

            Enter the Username

ドメインの Domain Controller のプロパティを照会するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command dc

ドメインの Trust Attributes を照会するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command domain-trust

ドメインからすべての Users を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users

ドメインから属性を含むすべての Users を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users -filter full-data

ドメインから Specific Users の属性を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users -name <user>

特定のユーザーのメンバーシップを一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users -name <user> -filter membership

ドメインから利用可能なすべての Computers を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command computers

ドメインから属性を含むすべての Computers を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command computers -filter full-data

ドメインから Specific Computer の属性を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command computers -name <computer name>

ドメインから利用可能なすべての Groups を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups

ドメインから属性を含むすべての Groups を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups -filter full-data

ドメインから Specific Group の属性を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups -name <group name>

ドメインから Specific Group のメンバーを一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups -name <group name> -filter membership

ドメインから Never Logged On のユーザーを一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command never-loggedon

ドメインから GPOs を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command gpo

ドメインから OUs を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ou

高い権限を持つ AD オブジェクトを一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command admin-priv

ドメインから MS-SQL Servers を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ms-sql

ドメインから MS-SQL Servers のすべての属性を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ms-sql -filter full-data

ドメインから特定の MS-SQL Server のすべての属性を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ms-sql -name <computer name> 

ドメインで利用可能な SPNs を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command spn

ドメインから Specific SPN のすべての属性を一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command spn -name <sam of spn>

Unconstrained Delegation が有効な AD オブジェクトを一覧表示するには、

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command unconstrained 

今後の予定

次のバージョンを構築するためのコントリビューターを募集しています。

計画中の機能:

  • カスタム LDAP クエリ
  • 既存のコマンドによる LDAP 属性のフィルタリング
  • LAPS の列挙
  • Kerberoasting SPNs
  • AS-REP Roasting SPNs
  • ローカル管理者アクセスのハンティング
  • ACL の列挙
  • BloodHound 用の JSON データのエクスポート

興味があれば、連絡ください :)

ツールをダウンロード