منتدى استراحات زايد

منتدى استراحات زايد (http://vb.ma7room.com/index.php)
-   منتدى أخبار المواقع والمنتديات العربية والأجنبية (http://vb.ma7room.com/forumdisplay.php?f=183)
-   -   طريقة نزع كود التبليغ لنسخ vbulletin على طريقة فريق GYSN (http://vb.ma7room.com/showthread.php?t=419648)

محروم.كوم 05-31-2010 11:00 AM

طريقة نزع كود التبليغ لنسخ vbulletin على طريقة فريق GYSN
 
<div>شرح طريقة نزع كود التبليغ لنسخ vbulletin على طريقة فريق GYSN<div align="center">

سيتم شرح خطوات النزع على اجزاء في ردود
يرجى الأخد بالاعتبار معلومات هذه النسخة :


1 - حساب العميل ( Licence Number )

2 - تاريخ تحميل النسخة

3 - رقم العميل ( Customer Number )
لكنه في ملفي tools.php و authenticate.php يكون مشفر بالـ MD5


اولا يتم حذف Licence Number الخاص بالنسخة من جميع الملفات وهو يكون في بداية الملف
مشار اليه بالاحمر :

كود:
|| ################################################## ################## ||
|| # vBulletin 3.8.4 - Licence Number VB8A6D0FQ2
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2009 Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2

All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| ################################################## ################## ||
\*================================================ ======================*/
ثانيا يتم حذف تاريخ تحميل Downloaded للنسخة من جميع الملفات وهو يكون في نهاية الملف
مشار اليه بالاحمر

كود:
/*================================================= =====================*\
|| ################################################## ##################
|| # Downloaded: 21:56, Tue Aug 11th 2009
|| # CVS: $RCSfile$ - $Revision: 27688 $
|| ################################################## ##################
\*================================================ ======================*/
الملفات المتبقية هي :

كود:
+ do_not_upload\
-----tools.php

+ upload\
++ \admincp\
----- backup.php
----- index.php
----- misc.php
----- newsproxy.php

++ \includes\
----- adminfunctions.php
----- adminfunctions_template.php
----- functions.php
----- md5_sums_vbulletin.php
----- vbulletin_credits.php

++ \install\
----- authenticate.php
----- install_language_en.php
----- upgrade_language_en.php
----- vbulletin-adminhelp.xml
----- vbulletin-language.xml
----- vbulletin-settings.xml

++ \modcp\
----- index.php
do_not_upload\tools.php
ابحث ثم احذف

كود:
if (strlen('0423cf329db4c816a95d05e2dfae8882') == 32)
{
/**
* @ignore
*/
define('CUSTOMER_NUMBER', '0423cf329db4c816a95d05e2dfae8882');
}
else
{
/**
* @ignore
*/
define('CUSTOMER_NUMBER', md5(strtoupper('0423cf329db4c816a95d05e2dfae8882') ));
}
ابحث ثم احذف

كود:
$customerid = $vbulletin->input->clean_gpc('p', 'customerid', TYPE_STR);
$bbcustomerid = $vbulletin->input->clean_gpc('c', 'bbcustomerid', TYPE_STR);

// ################################################## ###########################
if ($_POST['do'] == 'login')
{
if (md5(strtoupper($vbulletin->GPC['customerid'])) == CUSTOMER_NUMBER)
{
set******('bbcustomerid', md5(strtoupper($vbulletin->GPC['customerid'])), 0, '/', '');
$vbulletin->GPC['bbcustomerid'] = CUSTOMER_NUMBER;
$_REQUEST['do'] = '';
}
}

// ################################################## ###########################
if ($vbulletin->GPC['bbcustomerid'] !== CUSTOMER_NUMBER)
{
global $stylevar;

// set the style folder
if (empty($vbulletin->options['cpstylefolder']))
{
$vbulletin->options['cpstylefolder'] = 'vBulletin_3_Silver';
}
// set the forumhome script
if (empty($vbulletin->options['forumhome']))
{
$vbulletin->options['forumhome'] = 'index';
}
// set the version
$vbulletin->options['templateversion'] = VERSION;

define('NO_PAGE_TITLE', true);
print_cp_header('Tools');

?>
</b>
















Customer Number


This is the number with which you log in to the vBulletin.com Members' Area













, Copyright &copy;2000-, Jelsoft Enterprises Ltd</p>
admincp\backup.php
ابحث ثم احذف الكود المشار اليه بالاحمر

كود:
print_input_row($vbphrase['path_and_file_to_save_backup_to'], 'filename', './forumbackup-' . vbdate(str_replace(array('\\', '/', ' '), '', $vbulletin->options['dateformat']), TIMENOW) . '-' . substr(md5('VBF10EFC6A' . TIMENOW), 0, 5) . '.sql', 0, 60);
admincp\index.php

ابحث ثم أحذف

كود:
$versionhost = REQ_PROTOCOL . '://version.vbulletin.com';
ابحث ثم احدف الكود المشار اليه بالاحمر

كود:
</b> (vBulletin )

ابحث ثم احذف

كود:


ابحث ثم احدف الكود المشار اليه بالاحمر

<div style="margin:20px; margin-top:5px"> كود:
?>


الساعة الآن 01:24 PM

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd. TranZ By Almuhajir


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227