phpBB Security 1.0.3 kurulumu (Ayrıntılı ve Açıklamalı)

phpBB 2.0.x sürümleri için MODlar hakkında ihtiyacınız olan desteği buradan sorarak alabilirsiniz.

phpBB Security 1.0.3 modunu beğendiniz mi ?

evet
38
84%
hayır
7
16%
 
Toplam oy: 45

Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6971
Kayıt: 18.09.2005, 20:51
İletişim:

phpBB Security 1.0.3 kurulumu (Ayrıntılı ve Açıklamalı)

Mesaj gönderen ESQARE »

İlk önce phpBB Security 1.0.3 MOD'unu yüklüyoruz.Dosyayı sitemizden yüklemek için TIKLAYIN .Bu dosyayı MOD'un orjinal yapımcısının sitesinden http://phpbb-tweaks.com/ adresinden de indirebilirsiniz.

Daha sonra zipli dosyayı açıp Install klasörünün altındaki installer.php dosyasını phpBB forum dosyalarımızın olduğu ana dizine atıyoruz.MOD klasörünün içindeki root klasörünün içerisindeki dosyalarıda phpBB ana dizinimize göre FTP'ye gönderiyoruz.

Daha sonra foruma admin kullanıcı adı ve şifre ile giriş yapıyoruz.Daha sonra explorer satırına http://www.siteadı.com/phpBB_ana_dizini/installer.php yazarak scriptin yükleme sayfasına geliyoruz.Açılan pencerede ingilizce açıklamalarla beraber alt alta karşımıza 3 tane kutucuk çıkacak.

Choose an admin config name (ilk kutucuk) yazan kutucuğa admins_allowed yazın

Choose a mod config name (2. kutucuk) yazan kutucuğa mods_allowed yazın

Choose a disable config name (3. kutucuk) yazan kutucuğa block_unwanted yazın ve alttaki submit butonuna tıklayın.

Daha sonra karşımıza Install complete.Please open phpBBSecurity ....... gibi bir çok yazılar çıkacak.Şimdi FTPmizden phpBB dosyalarımızın olduğu dizinde includes/phpbb_security.php dosyasını açıp aşağıdaki şekilde değiştiriyoruz.

Kod: Tümünü seç

BUL
return 'real_admins';

Kod: Tümünü seç

BUNUNLA DEĞİŞTİR
return 'admins_allowed'; 

Kod: Tümünü seç

BUL
return 'real_mods';

Kod: Tümünü seç

BUNUNLA DEĞİŞTİR 
return 'mods_allowed'; 

Kod: Tümünü seç

BUL
return 'stop_unreal'; 

Kod: Tümünü seç

BUNUNLA DEĞİŞTİR
return 'block_unwanted'; 
Dosyayı kaydediyoruz ve FTP ye eskisinin üzerine yolluyoruz.Ve installer.php dosyasını FTP den KESİNLİKLE siliyoruz.

Daha sonra MOD dosyamızın içerisinden çıkan şu dosyaları FTP'den phpBB dosyalarımızın olduğu ana dizine gönderiyoruz:

Kod: Tümünü seç

-----------------------------------
----[ GÖNDERİLECEK DOSYALAR ]---------------
-----------------------------------

login_security.php			=>	Ana Dizin/
admin/admin_security.php		=>            Ana Dizin/admin/
includes/phpbb_security.php		=>	Ana Dizin/includes/
language/lang_*/lang_phpbb_security.php	=>	Ana Dizin/language/lang_*/
templates/subSilver/*			=>	Ana Dizin/templates/*/
templates/subSilver/admin/*		=>	Ana Dizin/templates/*/admin/
phpBB Security 1.0.3 için Türkçe dil dosyasını sitemizden indirebilirsiniz: http://download.phpbbturkey.com/phpbbse ... turkce.zip

Bu dosyayı da Ana dizin/language/lang_turkish klasörünün içerisine göndereceksiniz.

Daha sonra phpBB dosyalarımızı alttaki şekilde düzenlemeye başlıyoruz:

Kod: Tümünü seç

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

common.php

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

?>

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);
$ps_check = phpBBSecurity_Blocks();
	if ($ps_check)
		phpBBSecurity_Ban(phpBBSecurity_IP(), $board_config['phpBBSecurity_auto_ban'], $ps_check);
phpBBSecurity_MaxSessions($board_config['phpBBSecurity_allowed_sessions']);
phpBBSecurity_Guests();
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

login.php

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

//
// End session management
//

-----------------------------------
----[ ÜZERİNE EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

			if( $row['user_level'] != ADMIN && $board_config['board_disable'] )
			{

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
		if (md5($password) != $row['user_password'])
			phpBBSecurity_InvalidLogin($row['user_id']);								
			phpBBSecurity_CheckTries($row['user_id']);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

					if( $session_id )
					{

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
						phpBBSecurity_ResetTries($row['user_id']);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

modcp.php

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

// session id check
if ($sid == '' || $sid != $userdata['session_id'])
{
	message_die(GENERAL_ERROR, 'Invalid_session');
}

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
	if ( ($mode == 'delete') && ($confirm) )
		{
	$pass_one = isset($HTTP_POST_VARS['phpBBSecurity_verify']) ? $HTTP_POST_VARS['phpBBSecurity_verify'] : '';
	$pass_two = $userdata['user_password'];
		if (md5($pass_one) != $pass_two)
			message_die(GENERAL_ERROR, $lang['PS_modcp_verify_fail']);
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |		

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

				'MESSAGE_TEXT' => $lang['Confirm_delete_topic'], 

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
				'L_VERIFY'	=> '<br><br><span class="genmed">'. $lang['PS_modcp_verify'] .' <input type="password" class="post" name="phpBBSecurity_verify" value=""></span>',
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

admin/admin_ug_auth.php

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

$user_id = intval($user_id);
$group_id = intval($group_id);
$adv = intval($adv);
$mode = htmlspecialchars($mode);

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
$owner = '2';

	if (isset($HTTP_POST_VARS['submit']))
		{	
		if ( ($user_id == $owner) && ($userdata['user_id'] != $owner) )
			message_die(GENERAL_ERROR, $lang['PS_admin_not_authed']);
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

admin/admin_users.php

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

$html_entities_match = array('#<#', '#>#');
$html_entities_replace = array('<', '>');

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
$owner = '2';

	if (isset($HTTP_POST_VARS['submit']))
		{
	$user_id = intval($HTTP_POST_VARS['id']);
	
		if ( ($user_id == $owner) && ($userdata['user_id'] != $owner) )
			message_die(GENERAL_ERROR, $lang['PS_admin_not_authed']);
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

		$user_allowavatar = ( !empty($HTTP_POST_VARS['user_allowavatar']) ) ? intval( $HTTP_POST_VARS['user_allowavatar'] ) : 0;

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
	include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);		
		$locked_status 	= ($_POST['ps_lock']) ? $_POST['ps_lock'] : $HTTP_POST_VARS['ps_lock'];
		$reset_status 	= ($_POST['ps_reset']) ? $_POST['ps_reset'] : $HTTP_POST_VARS['ps_reset'];
		phpBBSecurity_Admin($user_id, $locked_status, $reset_status);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ BUL ]-----------------------
-----------------------------------
#
#
# This should be in the main $template->assign_vars( array, so if you have a mod that adds this
# anywhere else, make sure you put it in the right place.

'USERNAME' => $username,

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====		
			'PS_STATUS'		=> ($this_userdata['phpBBSecurity_login_tries'] >= $board_config['phpBBSecurity_login_limit']) ? $lang['PS_user_status_l'] : $lang['PS_user_status_u'],
			'PS_RESET'		=> $lang['PS_user_reset'],
			'PS_RESET_EXP'	=> $lang['PS_user_reset_exp'],
			'PS_LOCK'		=> $lang['PS_user_lock'],
			'PS_LOCK_EXP'	=> $lang['PS_user_lock_exp'],
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

admin/index.php

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

	$template->set_filenames(array(
		"body" => "admin/index_body.tpl")
	);

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====		
	$secfile = @file('http://phpbb-tweaks.com/secver.txt');
	$msg = '';
	$msg .= '<table align="top" class="forumline" width="100%">';
	$msg .= '	<tr>';
	$msg .= '		<th align="center" valign="middle" class="thTop" width="100%">';
	$msg .= '			phpBB Security Status';
	$msg .= '		</th>';
	$msg .= '	</tr>';
	$msg .= '	<tr>';
	$msg .= '		<td align="left" width="100%" class="row2">';
	$msg .= '			<span class="genmed">';
	if (!$secfile)
		$msg .= 'Sorry, I was unable to get version data at this time. Please try later.';
	
	if ($secfile)
		{
	$newest_ver = $secfile[0];
	$this_ver 	= $board_config['phpBBSecurity_version'];
	
		if ($newest_ver == $this_ver)
			$msg .= 'The newest release is <b>'. $newest_ver .'</b>. The version you are using is 
			<b>'. $this_ver .'</b>. So I would have to say you are up to date!';
		else
			$msg .= 'The newest release is <b>'. $newest_ver .'</b>. The version you are using is 
			<b>'. $this_ver .'</b>. So I would have to say you need to upgrade ASAP!';
		}
		
	$msg .= '			</span>';
	$msg .= '		</td>';
	$msg .= '	</tr>';
	$msg .= '	<tr>';
	$msg .= '		<th align="center" valign="middle" class="thTop" width="100%">&nbsp;</th>';
	$msg .= '	</tr>';
	$msg .= '</table>';
	echo $msg;
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

includes/functions.php

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

	//
	// Set up style
	//
	if ( !$board_config['override_user_style'] )
	{


-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);
phpBBSecurity_Elimination($board_config[phpBBSecurity_AdminConfigName()], $board_config[phpBBSecurity_ModConfigName()], $userdata['user_id']);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

includes/page_header.php

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

//
// The following assigns all _common_ variables that may be used at any point
// in a template.
//

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====					
include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

$template->pparse('overall_header');

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
	phpBBSecurity_FinalSet();
	phpBBSecurity_DBBackup();
		
	# Only allow them to login & view profile to update it
	if ($HTTP_SERVER_VARS['PHP_SELF'] == $board_config['script_path'] .'profile.'. $phpEx)
		$is_valid = TRUE;
	elseif ($HTTP_SERVER_VARS['PHP_SELF'] == $board_config['script_path'] .'login.'. $phpEx)
		$is_valid = TRUE;
	else
		$is_valid = '';
		
	if ( (!$is_valid) && (!$gen_simple_header) ) 
		{
		# Make sure they are not a guest
		if ($userdata['user_id'] != ANONYMOUS)
			{
			# Do the check
			if (!$userdata['phpBBSecurity_answer'] || !$userdata['phpBBSecurity_question'])
				phpBBSecurity_Force();
				
			if ($userdata['phpBBSecurity_force_pw_update'] != 1)
				message_die(GENERAL_ERROR, sprintf($lang['PS_pass_force'], '<a href="profile.'. $phpEx .'?mode=editprofile&infrom=phpBBSecurity&sid='. $userdata['session_id'] .'">', '</a>'));
			}
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

includes/page_tail.php

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

	'TRANSLATION_INFO' => ( isset($lang['TRANSLATION_INFO']) ) ? $lang['TRANSLATION_INFO'] : '',

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.1 =========================================================== |
#====
	'BLOCKED'	=> str_replace('%T%', '<b>'. number_format($board_config['phpBBSecurity_total_attempts']) .'</b>', $lang['PS_blocked_line']),
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

includes/usercp_register.php

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

$unhtml_specialchars_match = array('#>#', '#<#', '#"#', '#&#');
$unhtml_specialchars_replace = array('>', '<', '"', '&');

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
$in_from = (isset($HTTP_GET_VARS['infrom'])) ? $HTTP_GET_VARS['infrom'] : $HTTP_POST_VARS['infrom'];
	
	if ( (isset($HTTP_POST_VARS['submit'])) && ($HTTP_POST_VARS['mode'] == 'editprofile') && ($HTTP_POST_VARS['infrom'] == 'phpBBSecurity') )
		{
		if ( (empty($HTTP_POST_VARS['cur_password'])) || (empty($HTTP_POST_VARS['new_password'])) || (empty($HTTP_POST_VARS['password_confirm'])) )
			message_die(GENERAL_ERROR, $lang['PS_pass_force_error']);
		elseif ( ($userdata['user_password'] == md5($HTTP_POST_VARS['cur_password'])) && (isset($HTTP_POST_VARS['new_password'])) )
			{
		$q = "UPDATE ". USERS_TABLE ."
			  SET phpBBSecurity_force_pw_update = '1'
			  WHERE user_id = '". $userdata['user_id'] ."'";
		$db->sql_query($q);
			}
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

//
// Did the user submit? In this case build a query to update the users profile in the DB
//
if ( isset($HTTP_POST_VARS['submit']) )
{
	include($phpbb_root_path . 'includes/usercp_avatar.'.$phpEx);

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
	if ($mode == 'editprofile' || $mode == 'register')
		{
		if ( ($username == $password_confirm) && (isset($board_config['phpBBSecurity_use_password_match'])) )
			{
		$error = TRUE;
		$error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['PS_pass_match_error'];
			}
			
		if ( (strlen($password_confirm) < $baord_config['phpBBSecurity_password_min_length']) && (isset($board_config['phpBBSecurity_use_password_length'])) )
			{
		$error = TRUE;
		$error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['PS_pass_length_error'];			
			}		
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

	if ( !$error )
	{

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
	if ($userdata['user_password'] != $pass_check)
		{
	$sessiondata 				= isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) ? unserialize(stripslashes($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data'])) : array();
	$sessiondata['autologinid'] = ($sessiondata['autologinid'] == $userdata['user_password']) ? $pass_check : '';
	$sessiondata['userid'] 		= $userdata['user_id'];
	$sessionmethod 				= ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) ) ? SESSION_METHOD_COOKIE : SESSION_METHOD_GET;
						
	setcookie($board_config['cookie_name'] .'_data', serialize($sessiondata), (time() + 31536000), $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
	setcookie($board_config['cookie_name'] .'_sid', $userdata['session_id'], 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);		
		}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

$s_hidden_fields .= '<input type="hidden" name="current_email" value="' . $userdata['user_email'] . '" />';

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
		$s_hidden_fields .= ($in_from == 'phpBBSecurity') ? '<input type="hidden" name="infrom" value="phpBBSecurity">' : '';
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

			$sql = "UPDATE " . USERS_TABLE . "

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);
	$ps_question 	= ($_POST['PS_question']) 	? $_POST['PS_question'] : $HTTP_POST_VARS['PS_question'];
	$ps_answer 		= ($_POST['PS_answer']) 	? $_POST['PS_answer'] 	: $HTTP_POST_VARS['PS_answer'];
	if ( (isset($HTTP_POST_VARS['submit'])) && ($mode == 'editprofile') )
		phpBBSecurity_Validate($ps_question, $ps_answer, $userdata['user_id'], $mode, '');
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

			if ( !($result = $db->sql_query($sql, BEGIN_TRANSACTION)) )
			{
				message_die(GENERAL_ERROR, 'Could not insert data into users table', '', __LINE__, __FILE__, $sql);
			}

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
include_once($phpbb_root_path .'includes/phpbb_security.'. $phpEx);
	$ps_question 	= ($_POST['PS_question']) 	? $_POST['PS_question'] : $HTTP_POST_VARS['PS_question'];
	$ps_answer 		= ($_POST['PS_answer']) 	? $_POST['PS_answer'] 	: $HTTP_POST_VARS['PS_answer'];
	if ((isset($HTTP_POST_VARS['submit'])) && ($mode == 'register') )
		phpBBSecurity_Validate($ps_question, $ps_answer, $user_id, $mode, 'pre');
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

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

			if ( !($result = $db->sql_query($sql, BEGIN_TRANSACTION)) )
			{
				message_die(GENERAL_ERROR, 'Could not insert data into users table', '', __LINE__, __FILE__, $sql);
			}

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

#======================================================================= | 
#==== Start: == phpBB Security ========================================= | 
#==== v1.0.3 =========================================================== | 
#==== 
   if ( (isset($HTTP_POST_VARS['submit'])) && ($mode == 'register') ) 
      phpBBSecurity_Validate($ps_question, $ps_answer, $user_id, $mode, 'post'); 
#==== 
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === | 
#==== End: ==== phpBB Security ========================================= |    
#======================================================================= | 

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

	'USERNAME' => $username,

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====	
		'PS_TITLE'			=> $lang['PS_security_title'],
		'PS_QUESTION'		=> $lang['PS_security_question'],
		'PS_QUESTION_EXP'	=> $lang['PS_security_question_exp'],
		'PS_Q'				=> $userdata['phpBBSecurity_question'],		
		'PS_ANSWER'			=> $lang['PS_security_answer'],
		'PS_ANSWER_EXP'		=> $lang['PS_security_answer_exp'],
		'PS_A'				=> $userdata['phpBBSecurity_answer'],
		'PS_A_EXP'			=> $lang['PS_security_a_exp'],
		'PS_EXP'			=> $lang['PS_profile_explain'],
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

templates/*/confirm_body.tpl

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

</form>

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------

{L_VERIFY}

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

templates/*/overall_footer.tpl

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

Powered by <a href="http://www.phpbb.com/"

-----------------------------------
----[ ÜZERİNE EKLE ]----------------
-----------------------------------
#
# Eğer sayfa altında exploit girişmleri sayfasının linkini herkese göstermek istemiyorsanız:

Protected by phpBB Security © <a href="http://phpbb-tweaks.com" class="copyright" target="_blank">phpBB-TweakS</a><br />{BLOCKED}<br />

#
# Eğer sayfa altında exploit girişmleri sayfasının linkini herkese göstermek istiyorsanız:

<a href="login_security.php?phpBBSecurity=caught" class="copyright">Protected</a> by phpBB Security © <a href="http://phpbb-tweaks.com" class="copyright" target="_blank">phpBB-TweakS</a><br>{BLOCKED}<br>

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

templates/*/profile_add_body.tpl

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

	<!-- END switch_avatar_local_gallery -->
	<!-- END switch_avatar_block -->

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

	<!-- Start: phpBB Security -->
	<tr> 
	  <td class="catSides" colspan="2" height="28">&nbsp;</td>
	</tr>
	<tr> 
		<th class="thSides" colspan="2" height="12" valign="middle">{PS_TITLE}</th>
	</tr>
	<tr>
		<td align="left" class="row2" colspan="2">
			<span class="genmed">
				{PS_EXP}
			</span>
		</td>
	</tr>
	<tr>
		<td align="left" valign="bottom" class="row1">
			<span class="genmed">
				{PS_QUESTION}
			</span>
			<br>
			<span class="gensmall">
				{PS_QUESTION_EXP}
			</span>			
		</td>
		<td align="left" valign="middle" class="row2">
			<input type="text" name="PS_question" value="{PS_Q}" class="post" size="50">
		</td>		
	</tr>
	<tr>
		<td align="left" valign="bottom" class="row1">
			<span class="genmed">
				{PS_ANSWER}
			</span>
			<br>
			<span class="gensmall">
				{PS_ANSWER_EXP}
			</span>			
		</td>
		<td align="left" valign="middle" class="row2">
			<input type="text" name="PS_answer" value="{PS_A}" class="post" size="50">
			<span class="gensmall">
				{PS_A_EXP}
			</span>
		</td>		
	</tr>	
	<!-- End: phpBB Security -->

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

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

templates/*/admin/user_edit_body.tpl

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

	<tr>
	  <td class="row1" colspan="2"><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td>
	</tr>

-----------------------------------
----[ ALTINA EKLE ]-----------------
-----------------------------------

<!-- Start: phpBB Security -->
	<tr>
		<td class="row1">
			<span class="gen">
				{PS_LOCK}
			</span>
			<br />
			<span class="gensmall">
				{PS_LOCK_EXP}
			</span>			
		</td>
		<td class="row2">
			<span class="gensmall">
				<input type="checkbox" name="ps_lock">  {PS_STATUS}
			</span>
		</td>
	</tr>
	<tr>
		<td class="row1">
			<span class="gen">
				{PS_RESET}
			</span>
			<br />
			<span class="gensmall">
				{PS_RESET_EXP}
			</span>			
		</td>
		<td class="row2">
			<input type="checkbox" name="ps_reset">
		</td>	
	</tr>
<!-- End: phpBB Security -->

-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------
Bunları yaptıktan sonra son aşama olan .htaccess ve .phpbbsecurity dosyalarının düzenlenmesine geliyoruz.

http://www.phpbb-tweaks.com/pass_gen.html adresine girerek kendimize kullanıcı adı ve şifre belirliyoruz.Açılan sayfadaki kutucuğa:

admin:şifre

yazıyoruz ve alttaki Crypt butonuna tıklıyoruz.Ve bize şifremizin UNIX için şifrelenmiş halini veriyor.Şu şekilde:

admin:MQgCp8X4SN.jM

Burda örnek olarak admin:şifre olarak verdim.Kullanıcı adı ve şifrenizi kendiniz belirleyeceğiniz için oraya istediğinizi yazabilirsiniz.Mesela panel:123456 şeklinde kullanıcı adı ve şifre belirleyip Crypt butonuna tıklayarak çıkan kodu alabilirsiniz.

Crypt yaptıkdan sonra açılan sayfada çıkan kodu alıyoruz ve Mod'un yükleme dosyasının içerisindeki rename.phpbbsecurity dosyasını notepad ya da wordpad ile açarak en üst satıra aynen kopyalıyoruz ve kaydediyoruz.Bu dosyanın adınıda .phpbbsecurity olarak değiştirip (dosya isminin başında nokta olacak).FTP den phpBB dosyalarımızın olduğu ana dizinimize gönderiyoruz.

Daha sonra rename.htaccess dosyasını notepad veya wordpad ile açarak alttaki kodu dosyanın içerisine ekliyoruz:

Kod: Tümünü seç

<Files .phpbbsecurity> 
  deny from all 
</Files>
Bu kodu ekledikten sonra dosyanın adını .htaccess olarak değiştirip phpBB dosyalarımızın olduğu ana dizine gönderiyoruz.Eğer FTP ana dizinde .htaccess dosyası zaten varsa/kullanıyorsanız o dosyayı düzenleyip yukardaki kodu dosyanın en altına yada herhangi bir yere ekliyoruz.

Son olarak rename2.htaccess dosyasını açıp alttaki kodu dosyanın içerisine ekliyoruz.

Kod: Tümünü seç

require valid-user 

AuthType Basic 

AuthName "phpBB Security" 

AuthUserFile "/home/{USERNAME}/public_html/phpBB Dosyalarınızın yolu/.phpbbsecurity"
Burada değiştirmeniz gereken yerler var:

AuthUserFile "/home/{USERNAME}/public_html/phpBB Dosyalarınızın yolu/.phpbbsecurity" kısmındaki yere FTP yolunuzu yazıyorsunuz.Örneğin cpanel kullanıyorsanız aynen şu şekilde olacak:

Kod: Tümünü seç

AuthUserFile "/home/cpanel kullanıcı adınız/public_html/phpBB Dosyalarınızın yolu/.phpbbsecurity"
Eğer phpBB dosyalarınız direk FTP de ana dizinde ise şu şekilde yazacaksınız:

Kod: Tümünü seç

AuthUserFile "/home/cpanel kullanıcı adınız/public_html/.phpbbsecurity"
Burdaki amaç .phpbbsecurity dosyasının olduğu yolu belirtmektir.

Eğer cpanel kullanmıyorsanız Hosting firmanızdan FTP dizin yolu hakkında bilgi alabilirsiniz.

En son olarak bu dostanın adınıda (rename2.htaccess) .htaccess olarak değiştirip bu sefer FTP den phpBB dosyalarımızın olduğu yerdeki admin/ dizinine gönderiyoruz.

Hepsi bu kadar...

:arrow: UYARILAR/AÇIKLAMALAR

- Dosyaların adlarını .htaccess ya da .phpbbsecurity şeklinde windowsta değiştirmeniz mümkün olmayabilir.FTP programınızdan dosya adlarını değiştirebilirsiniz.Eğer oda işe yaramazsa Total Commander isimli programı önerebilirim.Total Commander programı Windows Gezgini'ne benzer.Windowsta Linux yada Unix'teki gibi dosyaları düzenlemenizi, ayar yapabilmenizi sağlar.Aynı zamanda FTP programıdır.Download adresi: http://www.totalcmd.net/

- Eğer windows server kullanıyorsanız .htaccess ve .phpbbsecurity dosyalarını kullanamayabilirsiniz.


Yazar: taNGo

(Eğer bu makaleyi ya da forumdaki diğer makaleleri alıntı yapacaksanız en alta site adresimizi belirgin bir şekilde yazınız.Emeğe saygı sizin saygınızı gösterir)
En son ESQARE tarafından 17.03.2006, 10:12 tarihinde düzenlendi, toplamda 1 kere düzenlendi.
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
fatihbaz

Mesaj gönderen fatihbaz »

1.0.3 ün içerisinde

rename.phpbbsecurity
rename.htaccess
rename2.htaccess

bunlar yok.sizin siteden indiremedim,verdiginiz diger adresten indirip baktım onda yok,bendekinde de yok.ama 1.0.2 nin içerisinde vardı.onları kullanmamın bi sakıncası olur mu acaba?

düzeltme :arkadaşlar modu kurdum ama bi sorun var yönetim paneline girdigimde sol taraftaki bölüm kayboldu.yerinde de bi hata mesajı yazıyor;

Parse error: parse error, unexpected T_DOUBLE_ARROW in /home/*******/public_html/admin/admin_users.php on line 769

769 no lu satırdaki kodlar şunlar:

'PS_STATUS' => ($this_userdata['phpBBSecurity_login_tries'] >= $board_config['phpBBSecurity_login_limit']) ? $lang['PS_user_status_l'] : $lang['PS_user_status_u'],

sorun nedir burada acaba?admin paneline giremiyorum.acil olarak yardıma ihtiyacım var...lütfen birisi yardımcı olsun!...
Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6971
Kayıt: 18.09.2005, 20:51
İletişim:

Mesaj gönderen ESQARE »

phpBB security 1.0.2 için olan .htaccess leride kullanabilirsiniz, linki de düzelttim sitemizden indirebilirsiniz.Diğer konuya gelince admin_users.php dosyası içerisinde şurada hata yapmışsınız:

Kod: Tümünü seç

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

'USERNAME' => $username,

-----------------------------------
----[ ÜZERİNE EKLE]----------------
-----------------------------------

#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====		
			'PS_STATUS'		=> ($this_userdata['phpBBSecurity_login_tries'] >= $board_config['phpBBSecurity_login_limit']) ? $lang['PS_user_status_l'] : $lang['PS_user_status_u'],
			'PS_RESET'		=> $lang['PS_user_reset'],
			'PS_RESET_EXP'	=> $lang['PS_user_reset_exp'],
			'PS_LOCK'		=> $lang['PS_user_lock'],
			'PS_LOCK_EXP'	=> $lang['PS_user_lock_exp'],
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |
-----------------------------------
----[ KAYDET & KAPAT ]---------------
-----------------------------------

$template->assign_vars( array kodundan önce eklemeyeceksiniz bu kodu.O satırlar şu şekilde olacak:

Kod: Tümünü seç

		$template->assign_vars(array(
#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.2 =========================================================== |
#====		
			'PS_STATUS'		=> ($this_userdata['phpBBSecurity_login_tries'] >= $board_config['phpBBSecurity_login_limit']) ? $lang['PS_user_status_l'] : $lang['PS_user_status_u'],
			'PS_RESET'		=> $lang['PS_user_reset'],
			'PS_RESET_EXP'	=> $lang['PS_user_reset_exp'],
			'PS_LOCK'		=> $lang['PS_user_lock'],
			'PS_LOCK_EXP'	=> $lang['PS_user_lock_exp'],
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== phpBB Security ========================================= |	
#======================================================================= |
			'USERNAME' => $username,
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
fatihbaz

Mesaj gönderen fatihbaz »

çok teşekkürler düzeldi.şuan sorunsuz çalışıyor....

ekleme : yalnız gizli soru için profile gidip,gizli soru ve cevabını yazdıktan sonra kaydediyorum ve aşagıdaki yazı çıkıyor karşıma.sonra danormal bi şekilde anasayfaya dönüyor.


message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?

bu nedir acaba?
Okyanus
Kayıtlı Kullanıcı
Mesajlar: 5
Kayıt: 17.04.2006, 19:20

Mesaj gönderen Okyanus »

bu modu phpBB-2.0.20 için kullanabilirmiyiz ? yoksa phpBB-2.0.20 için daha yenimi düzenleniyor
Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6971
Kayıt: 18.09.2005, 20:51
İletişim:

Mesaj gönderen ESQARE »

Okyanus yazdı:bu modu phpBB-2.0.20 için kullanabilirmiyiz ? yoksa phpBB-2.0.20 için daha yenimi düzenleniyor
kullanabilirsiniz.
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
Kullanıcı avatarı
cat
Kayıtlı Kullanıcı
Mesajlar: 34
Kayıt: 09.04.2006, 23:49
İletişim:

Mesaj gönderen cat »

paylaşım için saol kardeşim...peki bu modu plus 1,52 ye kurabilrmiyiz...
cauchy
Kayıtlı Kullanıcı
Mesajlar: 11
Kayıt: 15.04.2006, 23:33

Mesaj gönderen cauchy »

Kod: Tümünü seç

Warning: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/xmbx.org/subdomains/forum/httpdocs/installer.php:20) in /home/httpd/vhosts/xmbx.org/subdomains/forum/httpdocs/includes/page_header.php on line 485

Warning: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/xmbx.org/subdomains/forum/httpdocs/installer.php:20) in /home/httpd/vhosts/xmbx.org/subdomains/forum/httpdocs/includes/page_header.php on line 486
hatasi aldim

edit : sorunu cozdum
cozum :
includes icerisinde page_header.php ye sag tikladim ve sahibine calistir izni verdim.
cauchy
Kayıtlı Kullanıcı
Mesajlar: 11
Kayıt: 15.04.2006, 23:33

Mesaj gönderen cauchy »

şimdi forum a hiç giremiyorum. Açılışta direk şifre soruyor peki diyelim ki ben bu şifre olayini da atlattim , peki başkalari nasil üye olacak bu siteye ?

forum : http://forum.xmbx.org

teşekkürler
Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6971
Kayıt: 18.09.2005, 20:51
İletişim:

Mesaj gönderen ESQARE »

ana dizindeki .htaccess dosyasına şifre yetkisi vermişsiniz. admin/ klasöründeki .htaccess dosyasına o yetkiyi vereceksiniz.Mod kurulumundaki .htaccess dosyalarıyla ilgili olan yerleri tekrar gözden geçirin.
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
cauchy
Kayıtlı Kullanıcı
Mesajlar: 11
Kayıt: 15.04.2006, 23:33

Mesaj gönderen cauchy »

edit:ok
En son cauchy tarafından 23.04.2006, 21:37 tarihinde düzenlendi, toplamda 1 kere düzenlendi.
Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6971
Kayıt: 18.09.2005, 20:51
İletişim:

Mesaj gönderen ESQARE »

Türkçe dil dosyasını language/lang_turkish/ dizinine göndermeniz gerekmektedir.

Türkçe dil dosyası sitemizden sorunsuz yükleniyor: http://download.phpbbturkey.net/phpbbse ... turkce.zip

paket içinden çıkan subSilver teması için olan tüm dosyaları aynı zamanda kullandığınız bütün temalara göndereceksiniz.
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
Okyanus
Kayıtlı Kullanıcı
Mesajlar: 5
Kayıt: 17.04.2006, 19:20

Mesaj gönderen Okyanus »

ya girişte şifre soruyor page_headere 744cmoh verdim başlangıçtaki hatalı sayfalar gitti fakat şimdi hiçbir yere ulaşamıyorum nasıl güzeltilebilir yada

aslında benim gibi beceremeyenler için böle hazırlanmış 2.0.20nın güvenlikleri yapılmış (phpbb_security & anti robot login) Kurulu Hazır Bi tane kurulum olucak biraz fazla şeymi istiyorum ne bilmiyorum ama ilgilenenler bu işe bi el atsa ?...
cauchy
Kayıtlı Kullanıcı
Mesajlar: 11
Kayıt: 15.04.2006, 23:33

Mesaj gönderen cauchy »

benim de aynı sorunlar basima geldi , forum u komple sildim.Butun emekler gitti , internal server error verdi site. ben de database i vs sildim tekrar yukledim.Dedigin gibi , sifirdan kuranlar icin boyle birlestirilmis mod yuklu paketler olsa cok iyi olur.

bilgisi olan varsa paylassin lutfen
Kullanıcı avatarı
ESQARE
Web Sitesi Yöneticisi
Web Sitesi Yöneticisi
Mesajlar: 6971
Kayıt: 18.09.2005, 20:51
İletişim:

Mesaj gönderen ESQARE »

Çok istek olursa kurulu halde yayınlayabiliriz.
Resim
phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi

Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
Kilitli

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

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Bing [Bot] ve 1 misafir