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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
cleanldap — AD WSを介したActive Directory偵察のためのステルス性LDAPクエリBOF。属性列挙とデータ収集を可能にし、レッドチーム運用に使用します。 | Kitploit
ツール/GitHubGitHub/mandiant/cleanldap
偵察情報収集ペネトレーションテストユーティリティとフレームワークレッドチーミング
GitHubmandiant/cleanldap

cleanldap

AD WSを介したActive Directory偵察のためのステルス性LDAPクエリBOF。属性列挙とデータ収集を可能にし、レッドチーム運用に使用します。

リポジトリを見る
19412210ヶ月前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

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

CleanLdap

AD WS 上でステルスLDAPクエリを実行するBOF

引数

本題に入ります。引数とその意味は以下の通りです:

root@kitploit:~
# Z: DC Hostname ("dc01.example.com")
# Z: LDAP query ("(objectClass=*)")
# Z: Comma separated list of LDAP attributes ("samaccountname,distinguishedName,cn") <- if empty, collect all
# Z: Base DN ("DC=example,DC=com") <- if empty parse from hostname
# Z: Max elements per pull ("25") <- wide char b/c XML, if empty default to 25, max 256
bof_pack($1, "ZZZZZ", $2, $3, $4, $5, $6);

呼び出し例

root@kitploit:~
// Retrieve only the sAMAccountName for LDAP objects where cn is "Administrator"
cleanldap "dc01.domain.local" "(cn=Administrator)" "samaccountname" "" "100"

// Retrieve all LDAP attributes needed to parse with bofHound
cleanldap "dc01.domain.local" "(objectclass=*)" "" "" "100"
cleanldap "dc01.domain.local" "(objectclass=*)" "*" "" "100"

// Pull list of attributes from all users using specified base DN
cleanldap "dc01.domain.local" "(objectclass=user)" "samaccountname,cn,distinguishedname" "DC=domain,DC=local" "100"

出力例

LDAP クエリ結果

その他

  • Mythic 経由で実行する場合、すべての BOF 引数を指定する必要があります。
ツールをダウンロード