
BUG
Quote / Code / Mesaj Gönderme problemi
Kod: Tümünü seç
*bendeki hata! çok uğraştım bulamadım. bu koddan kaynaklanıyormuş**
[AÇ]
ctracker/engines/ct_security.php
[BUL VE SİL]
// Now we have a look to $HTTP_POST_VARS
foreach ( $HTTP_POST_VARS as $post_var_fieldname => $post_var_field_value )
{
// Some fields in $HTTP_POST_VARS don't get checked to prevent wrong detection
$unchecked_fields = array('username', 'password', 'subject', 'message',
'poll_title', 'poll_option', 'poll_delete',
'email', 'confirm_code', 'aim', 'msn', 'yim',
'interests', 'occupation', 'signature', 'website',
'location', 'search', 'sitename', 'word',
'replacement', 'help', 'last_msg', 'quote',
'preview', 'post', 'mode');
$is_unchecked_field = str_replace($unchecked_fields, '', $post_var_fieldname);
if ( $is_unchecked_field == $post_var_fieldname )
{
// Prevent tricks wich comment out SQL commands
$post_var_field_value = str_replace('/', '', $post_var_field_value);
$post_var_field_value = str_replace('*', '', $post_var_field_value);
// Now we do a very simple method to mark potential Worm activities
$check_post_var = str_replace($ct_rules, '*', $post_var_field_value);
if ( $post_var_field_value != $check_post_var )
{
$ct_attack_detection = true;
break;
}
}
}