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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/topscoder/nuclei-wordfence-cve
脆弱性スキャナー脆弱性分析エクスプロイト情報収集ウェブセキュリティクローラー
GitHubtopscoder/nuclei-wordfence-cve

nuclei-wordfence-cve

80k+ の WordPress Nuclei テンプレート。Wordfence インテルから毎日更新され、深刻度/タグ/CVE でフィルタリングして、ワンラインでスキャンできます。🚀🔒

リポジトリを見る
1.3k1541411時間11分前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

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

Nuclei + Wordfence = ♥

77,636 WordPress セキュリティスキャン用の Nuclei テンプレート 🥳

GitHub Workflow Status pre-commit Templates added
プロジェクトデモ

WordPress セキュリティをレベルアップさせましょう!このプロジェクトには、WordPress 向けの新しい Nuclei テンプレートが山のように詰まっています。コア、プラグイン、テーマの弱点を、Wordfence.com の最新インテルに基づいてスキャンできます。

これが、あなたの新しいベストフレンドになる理由です:

  • 膨大なコレクション: 個別のテンプレートを探し回る必要はもうありません。手元に完全な武器庫があります。
  • 常に最新の状態: これらのテンプレートは最新の脅威に合わせて更新され続けるため、常に先を行くことができます。
  • オープンソースの魔法: 特定の状況に合わせてテンプレートを微調整する必要がありますか?問題ありません。すべてを自由にコントロールできます。
  • WordPress サイトを守っているなら、このプロジェクトは、悪意ある攻撃者よりも先に脆弱性を特定するための秘密兵器です。時間を無駄にするのはやめて、プロのようにサイトを保護しましょう!


    [!TIP] このプロジェクトが役に立ったと思ったら、コーヒーを一杯ごちそうしていただけると嬉しいです。

    Buy Me A Coffee

    ✨ 何が含まれているの?!

    カテゴリ合計
    wp-plugins71,166
    wp-themes5,745
    wp-core731
    other0
    深刻度合計
    critical7,299
    high12,455
    medium22,341
    low35,541
    info0

    🚀 クイックスタート

    Nuclei で使用するためにこの nuclei-wordfence-cve リポジトリをインストールするには、次のコマンドを使用します:

    root@kitploit:~
    export GITHUB_TEMPLATE_REPO=topscoder/nuclei-wordfence-cve
    nuclei -update-templates
    

    上記のコマンドでこのテンプレートリポジトリをインストールしたら、次のコマンドを実行して Nuclei で脆弱性をスキャンできます:

    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -u https://target.com
    

    Wordfence は脆弱性情報を2つの独立したフィードで提供します。最初のフィードには、CVE が割り当てられた本番(production)の脆弱性のみが含まれます。2つ目のフィードには、まだ CVE が割り当てられていない候補(candidate)の脆弱性が含まれ、それらは本番フィードに昇格する場合もあれば、されない場合もあります。これらのフィードから生成されたテンプレートを区別するために、各テンプレートには production または candidate のタグが割り当てられており、タグフィルターで対象を絞り込むことができます。

    production テンプレートのみを含める:

    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -tags production -u https://target.com
    

    candidate テンプレートのみを含める:

    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -tags candidate -u https://target.com
    

    💻 使用例

    テンプレートの使用方法の例をいくつか示します:

    • WordPress の既知の脆弱性をすべてスキャンするには、次のコマンドを実行します:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -u https://target.com
    
    • 特定の CVE の脆弱性をスキャンするには、次のコマンドを実行します:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -template-id cve-2023-32961 -u https://target.com
    
    • 重大な脆弱性のみをスキャンするには、次のコマンドを実行します:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -severity critical -u https://target.com
    
    • WordPress コアの脆弱性のみをスキャンするには、次のコマンドを実行します:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-core -u https://target.com
    
    • WordPress プラグインの脆弱性のみをスキャンするには、次のコマンドを実行します:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-plugin -u https://target.com
    
    • WordPress テーマの脆弱性のみをスキャンするには、次のコマンドを実行します:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-theme -u https://target.com
    
    • 自由にやりたいなら、組み合わせて、組み合わせて、組み合わせまくりましょう:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -tags wp-plugin,wp-theme -severity critical,high
    
    • さらに自由を目指すなら、次のような複雑な式を指定できるテンプレート条件フラグ(-tc)を使用できます:
    root@kitploit:~
    nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_lower(name),'cross-site scripting') || contains(to_upper(name),'XSS')" -u https://target.com
    
    nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_lower(name),'sql injection') || contains(to_lower(description),'sql injection')" -u https://target.com
    
    nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_lower(name),'file inclusion') || contains(to_lower(description),'file inclusion')" -u https://target.com
    
    nuclei -t github/topscoder/nuclei-wordfence-cve -template-condition "contains(to_upper(name),'CSRF') || contains(to_upper(description),'CSRF')" -u https://target.com
    

    🤖 深刻度の再計算

    テンプレートの深刻度は、実際の影響をより適切に反映するためにパーサーによって調整されます。src/lib/wordfence_api_parser.py の determine_severity 関数は、脆弱性のタイトルと説明を検査し、認証済みユーザーに限定された問題(例:ログインや昇格した権限が必要な問題)をダウンスケールします。

    例(簡略化):

    • タイトルまたは説明に authenticated という単語が含まれている場合(unauthenticated ではない場合)、その関数は問題のリスクがより低いと見なし、より高い CVSS ラベルの代わりに Low を返します。

    これにより、ログインユーザーにのみ影響する脆弱性に Medium/High の深刻度を割り当てることを防ぎ、公開サイトをスキャンする際のノイズを減らすことができます。

    👥 貢献

    このプロジェクトに貢献したい場合は、お気軽にリポジトリをフォークしてプルリクエストを送信してください。

    📚 ライセンス

    このプロジェクトは MIT ライセンスの下で提供されています。

    [!NOTE] ~~ 責任を持って使用してください! ~~

    ツールをダウンロード