Cracker Tracker v5.0.x Bug Çözümleri

phpBB 2.0.x sürümleri için MODlar hakkında ihtiyacınız olan desteği buradan sorarak alabilirsiniz.
Kullanıcı avatarı
dj_akman
Kayıtlı Kullanıcı
Mesajlar: 851
Kayıt: 05.04.2006, 15:57
Konum: İstanbul
İletişim:

Mesaj gönderen dj_akman »

arkadaşlar bu ctrackerden sonra toplu e-mailde yollamada sorun yaşıorum e-maili yazıorum gönder diorum bu hatayı verior

Genel Hata
Ran into problems sending Mail. Response: 452 Error: too many recipients

DEBUG MODE

Line : 167
File : smtp.php


işte 167 satır ve diğer

Kod: Tümünü seç

165	fputs($socket, "RCPT TO: <$mail_to>\r\n");
166		server_parse($socket, "250", __LINE__);
167	}
168
169	// Ok now do the CC and BCC fields...
170	@reset($bcc);
171	while(list(, $bcc_address) = each($bcc))
Kullanıcı avatarı
cupra
Kayıtlı Kullanıcı
Mesajlar: 2505
Kayıt: 01.04.2006, 02:33
Konum: smyrna
İletişim:

Mesaj gönderen cupra »

ctracker v5.0.1 versiyonu yayınlanmıştır.
Kullanıcı avatarı
atilimtosun
Kayıtlı Kullanıcı
Mesajlar: 208
Kayıt: 29.08.2006, 20:55
İletişim:

Mesaj gönderen atilimtosun »

ben kurmaya çekiniyorum açıkçası :roll:

bunun Eski Versionu yokmu onu kursam.
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

4.1.8 var onu kur
Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6996
Kayıt: 18.09.2005, 20:51
İletişim:

Mesaj gönderen ESQARE »

Sitelerinde phpBB Search Engine Indexer (archive modu) kurulu olanlar, CrackerTracker 5.0.x sürümünü yükledikten sonra /archive sayfasında şuna benzer bir hata alabilirler:

Kod: Tümünü seç

Warning: Invalid argument supplied for foreach() in /home/turkiyef/public_html/ctracker/engines/ct_security.php on line 159

Warning: Cannot modify header information - headers already sent by (output started at /home/turkiyef/public_html/ctracker/engines/ct_security.php:159) in /home/turkiyef/public_html/includes/sessions.php on line 462

Warning: Cannot modify header information - headers already sent by (output started at /home/turkiyef/public_html/ctracker/engines/ct_security.php:159) in /home/turkiyef/public_html/includes/sessions.php on line 463
Bunun çözümü araştırmalarıma göre henüz hiç bir yerde verilmemiş.Bunu şu şekilde düzeltebiliriz:

Kod: Tümünü seç

#
#-----[ AÇ ]------------------------------------------
#

ctracker/engines/ct_security.php

#
#-----[ BUL ]------------------------------------------
#

foreach ( $checkpost 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', 'content', 'server_name',
								'script_path', 'sitename', 'site_desc', 'disable_reg_msg',
								'disable_msg', 'cookie', 'avatar', 'file', 'picture',
								'filter', 'xs', 'edit', 'content', 'fileupload', 'filecomment',
								'comment', 'rate', 'pic');
	$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(array('/', '*'), '', $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;
		}
	}
}

#
#-----[ BUNUNLA DEĞİŞTİR ]------------------------------------------
#

if($checkpost)
{
foreach ( $checkpost 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', 'content', 'server_name',
								'script_path', 'sitename', 'site_desc', 'disable_reg_msg',
								'disable_msg', 'cookie', 'avatar', 'file', 'picture',
								'filter', 'xs', 'edit', 'content', 'fileupload', 'filecomment',
								'comment', 'rate', 'pic');
	$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(array('/', '*'), '', $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;
		}
	}
}
}

#
#-----[ KAYDET/KAPAT ]------------------------------------------
#
# SoN
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
Gealdor
Kayıtlı Kullanıcı
Mesajlar: 6
Kayıt: 10.09.2006, 13:50
İletişim:

Mesaj gönderen Gealdor »

öncelikle merhabalar..benim bir problemim var arkadaşlar.. Forum Versiyonu 2.0.21 ya da sayılar yanlış ise şöyle söyleyim en son versiyon.. ctracker'ı kurduğum zaman şöyle bir hata ile karşılaştım:

Kod: Tümünü seç

message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?
sizce hatayı nerede yaptım?
(dipnot: easymod: ver 0.0.21a kullanıyorum...)
Gealdor
Kayıtlı Kullanıcı
Mesajlar: 6
Kayıt: 10.09.2006, 13:50
İletişim:

Mesaj gönderen Gealdor »

arkadaşlar problemi çözmüş bulunuyorum ;) teşekkür ederim..
Kullanıcı avatarı
cupra
Kayıtlı Kullanıcı
Mesajlar: 2505
Kayıt: 01.04.2006, 02:33
Konum: smyrna
İletişim:

Mesaj gönderen cupra »

atilimtosun yazdı:ben kurmaya çekiniyorum açıkçası :roll:

bunun Eski Versionu yokmu onu kursam.
5.01 de sadece dosyalar güncellenmiştir, ctracker v5.0.0 versiyonunu kuranlar için database güncellemesi yoktur .. ilk mesajda belirtilen hatalar giderilmiştir. ve bazı optimizasyonlar yapılmıştır.
güvenle kurabilirsiniz.
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

Global Duyuru özelliğinin karakter sınırlamasını nasıl arttırabiliriz?
HaYaL-eT
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 02.08.2006, 21:13
İletişim:

Mesaj gönderen HaYaL-eT »

CBACK CrackerTracker has detected a potential attack on this site with a worm or exploit script so the Security System stopped the script.


If you can see this page after including a new MOD into your board or after clicking on a link please contact the Board Administrator with this error message and a description what you have done before you could see this page, that the Admin has the possibility to fix the problem.

Bu extreme styles modunu easymod ile yüklemeye çalışırken oldu. Extreme styles modunun kurulumu basit biliyorum ama başka modlarda da olur mu onu merak ediyorum?
Kullanıcı avatarı
GodBeach
Uzaklaştırıldı
Mesajlar: 734
Kayıt: 05.05.2006, 23:12
Konum: Güngören, İSTANBUL
İletişim:

Mesaj gönderen GodBeach »

Extreme Styles modunda kod değişikliği yokki
Bir php kodu
$GodBeach = "Php Script Yazılır";

print $GodBeach;

Önizleme: Php Script Yazılır
HaYaL-eT
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 02.08.2006, 21:13
İletişim:

Mesaj gönderen HaYaL-eT »

Biliyorum... O bir örnekti..

Aynı şey cash modu kurmaya çalışırken de oldu. Tespit ettiği zararlı bir ajandan dolayı kurulumu durdurdu. Nedenini merak ediyorum?
nedji
Kayıtlı Kullanıcı
Mesajlar: 9
Kayıt: 11.09.2006, 17:37
İletişim:

Mesaj gönderen nedji »

ben cracker tracker'i kurdum fakat yonetim panelinden yeni forum veya kategori olusturmak istedigimde bunu saldiri olarak algiliyor cracker trackeri kurdugumdan beri yeni forum ya da kategori olusturamiyorum.

Kod: Tümünü seç

CBACK CrackerTracker has detected a potential attack on this site with a worm or exploit script so the Security System stopped the script. 


If you can see this page after including a new MOD into your board or after clicking on a link please contact the Board Administrator with this error message and a description what you have done before you could see this page, that the Admin has the possibility to fix the problem. 
Kullanıcı avatarı
cupra
Kayıtlı Kullanıcı
Mesajlar: 2505
Kayıt: 01.04.2006, 02:33
Konum: smyrna
İletişim:

Mesaj gönderen cupra »

nedji yazdı:ben cracker tracker'i kurdum fakat yonetim panelinden yeni forum veya kategori olusturmak istedigimde bunu saldiri olarak algiliyor cracker trackeri kurdugumdan beri yeni forum ya da kategori olusturamiyorum.

Kod: Tümünü seç

CBACK CrackerTracker has detected a potential attack on this site with a worm or exploit script so the Security System stopped the script. 


If you can see this page after including a new MOD into your board or after clicking on a link please contact the Board Administrator with this error message and a description what you have done before you could see this page, that the Admin has the possibility to fix the problem. 
selam bir dosyanda değişim olmuş olabilir incelemek lazım..
Kullanıcı avatarı
cupra
Kayıtlı Kullanıcı
Mesajlar: 2505
Kayıt: 01.04.2006, 02:33
Konum: smyrna
İletişim:

Mesaj gönderen cupra »

ctracker 5.0.2 versiyona güncellenmiştir.. linkler günceldir..
db yüklemesi yoktur..
Kilitli

“2.0.x MOD Destek” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 10 misafir