04-03-2017, 12:50 PM
Hey,
noticed a XSS vulnerability in users/edit_profile.php on line 45:
$newBio = $_POST['bio'];
Should be: $newBio = Input::get('bio');
Otherwise we got some naked & public scripts in users bios
noticed a XSS vulnerability in users/edit_profile.php on line 45:
$newBio = $_POST['bio'];
Should be: $newBio = Input::get('bio');
Otherwise we got some naked & public scripts in users bios