Risk : Yüksek
Etki : Uzaktan kod caliştirma.
Parametre : XSS
Bilgi : SMF Altyapisini kullanan Forumlarda XSS Güvenlik zaafiyat olduğu ortaya çıkmıştır.
Exploit(saldırı-ornek-kodları) :
Find on line ~85 in Sources/Search.php:
foreach ($temp_params as $i => $data)
{
@list ($k, $v) = explode('|\'|', $data);
$context['search_params'][$k] = stripslashes($v);
}
Change to:
foreach ($temp_params as $i => $data)
{
@list ($k, $v) = explode('|\'|', $data);
$context['search_params'][$k] = RemoveXSS(stripslashes($v));
}
The RemoveXSS function is taken from the following site:
Not : Exploit Alıntıdır.
Onur OKTAY