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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ntlm-scanner — ImpacketをベースとしたシンプルなPythonツールで、サーバーに対して様々な既知のNTLM脆弱性をテストします。 | Kitploit
ツール/GitHubGitHub/preempt/ntlm-scanner
脆弱性スキャナーエクスプロイトネットワークセキュリティペネトレーションテスト
GitHubpreempt/ntlm-scanner

ntlm-scanner

ImpacketをベースとしたシンプルなPythonツールで、サーバーに対して様々な既知のNTLM脆弱性をテストします。

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

人気

すべて見る →

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

すべてのツールを探索

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

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

新着!CVE-2020-1472(ZeroLogon)のエクスプロイトスキャン

ネットワーク内のドメインコントローラをスキャンして、CVE-2020-1472の実際の悪用を検出します

例:

root@kitploit:~
python scan.py -vuln CVE-2020-1472 -target-file targets.txt
python scan.py -vuln CVE-2020-1472 -target <DC name/IP>

このツールは、毎分ドメインコントローラに対して空のパスワードを試みることで動作します。悪用ではパスワードを空に設定する必要があるため、非常に迅速に元に戻さない限り、悪用中の実行中に悪用試行を検出できます。

NTLMスキャナー

SMBを介してさまざまなNTLM脆弱性をチェックします。 このスクリプトは対象ホストとの接続を確立し、無効なNTLM認証を送信します。これが受け入れられた場合、ホストは適用されたNTLM脆弱性に対して脆弱であり、関連するNTLM攻撃を実行できます。 詳細はこちら:

  • https://www.preempt.com/blog/how-to-easily-bypass-epa-to-compromise-any-web-server-that-supports-windows-integrated-authentication/
  • https://www.preempt.com/blog/your-session-key-is-my-session-key-how-to-retrieve-the-session-key-for-any-authentication/
  • https://www.preempt.com/blog/drop-the-mic-cve-2019-1040/
  • https://www.preempt.com/blog/drop-the-mic-2-active-directory-open-to-more-ntlm-attacks/

注意:ほとんどのスキャンはログイン情報自体が有効であるため、失敗したログイン試行を生成しません。CVE-2019-1338は認証失敗を生成し、アカウントのロックアウトを引き起こす可能性があります。

本ソフトウェアは以下に基づいています:

  • CVE-2019-1040スキャナー (https://github.com/fox-it/cve-2019-1040-scanner) by Dirk-jan Mollema (@_dirkjan)
  • Impacket (https://github.com/SecureAuthCorp/impacket) by SecureAuth Corporation (https://www.secureauth.com/)
  • 使用方法

    スクリプトは最新のimpacketバージョンを必要とします。Python 2と3の両方で動作するはずです(Python 3ではgitからimpacketを使用する必要があります)。

    root@kitploit:~
    [*] NTLM vulnerabilities scanner by @YaronZi / Preempt - Based on impacket by SecureAuth
    usage: scan.py [-h] [-target TARGET] [-target-file file]
                   [-port [destination port]] [-vuln [scanned vulnerability]]
                   [-hashes LMHASH:NTHASH]
    
    NTLM scanner - Connects over SMB and attempts to authenticate with invalid
    NTLM packets. If accepted, target is vulnerable to the scanned vulnerability
    
    optional arguments:
      -h, --help            show this help message and exit
      -target TARGET        [[domain/]username[:password]@]<targetName or address>
    
    connection:
      -target-file file     Use the targets in the specified file instead of the
                            one on the command line (you must still specify
                            something as target name)
      -port [destination port]
                            Destination port to connect to SMB Server
      -vuln [scanned vulnerability]
                            The vulnerability to scan SMB Server on [CVE-2019-1019
                            |CVE-2019-1040|CVE-2019-1166|CVE-2019-1338|CVE-2020-14
                            72]
    
    authentication:
      -hashes LMHASH:NTHASH
                            NTLM hashes, format is LMHASH:NTHASH
    
    ツールをダウンロード