subfolio
subfolio copied to clipboard
Reflected XSS Vulnerability
Hello, your code is prone to reflected XSS attacks, since some user input is not escaped. For example: https://github.com/area17/subfolio/blob/fcd7e59b670e5f3896d5fac5ff1f487b23feb57a/config/themes/default/pages/login.php#L13
You can escape user input before reflecting it on your website. For example, please consider using htmlentities($_POST['username']).