Re: Simple Machines Forum "SMF Shoutbox" Mod Persistent XSS
- From: vermsky@xxxxxxxxxxxxxxxxxx
- Date: 21 Mar 2008 20:36:21 -0000
Here's the solution:
After you have installed the shoutbox please modify the file sboxDB.php.
Please search for
Code:
Code: [Select]
// handle special characters
$content = addslashes($piph . $content);
and replace this with
Code:
Code: [Select]
// handle special characters
$content = addslashes($piph . $content);
// enquote html and script code to avoid html/javascript injection
$content = htmlentities($content, ENT_QUOTES);
- Prev by Date: XSS in cPanel 11.x
- Next by Date: Safari 3.1 for windows download bug
- Previous by thread: XSS in cPanel 11.x
- Next by thread: Safari 3.1 for windows download bug
- Index(es):