[مجابة] هاك : يوهم الزائر انه هو
المشرف: alhitary
[?????] ??? : ???? ?????? ??? ??
???? ?? ??? ????? ?????? ??? ???? ?? ??????? ??????
???? ????? ?? ???? ??? ????? ???? ?? ???? ??? phpbb
???? ???? ??????? ?? ??????
???? ????? ?? ???? ??? ????? ???? ?? ???? ??? phpbb
كود: تحديد الكل
???? ??? ??? ????? ?
??? ????? [you] ?? ??? ???????? ?? ?????? ????? ????????? ??? ??? ???????? ???? ????? ???????.
?????????:
--includes/functions.php
--includes/functions_newpost.php
--archive/index.php (???????)
--archive/global.php (???????)
??? ???????: 15 ?????
????? ??????? :)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? includes/functions.php
???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function process_replacement_vars($newtext, $sendheader = 1)
{
// parses replacement vars
global $DB_site, $vboptions, $style, $stylevar, $newpmmsg, $_SERVER, $debug;
static $replacementvars;
if (connection_status())
{
exit;
}
// do vBulletin 3 replacement variables
if (!empty($style['replacements']))
{
if (!isset($replacementvars))
{
$replacementvars = unserialize($style['replacements']);
}
// this is WAY too slow!
//$newtext = strtr($newtext, $replacementvars);
// using str_replace() has case-sensitivity issues...
//$newtext = str_replace(array_keys($replacementvars), $replacementvars, $newtext);
// this is slower than str_replace() but is case-insensitive, so we'll use it.
$newtext = preg_replace(array_keys($replacementvars), $replacementvars, $newtext);
}
return $newtext;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function process_replacement_vars($newtext, $sendheader = 1)
{
// parses replacement vars
global $DB_site, $vboptions, $style, $stylevar, $newpmmsg, $_SERVER, $debug;
static $replacementvars;
if (connection_status())
{
exit;
}
// do vBulletin 3 replacement variables
if (!isset($replacementvars))
{
$replacementvars = unserialize($style['replacements']);
}
global $bbuserinfo;
$replacementvars['/\[you\]/i'] = $bbuserinfo['username'];
// this is WAY too slow!
//$newtext = strtr($newtext, $replacementvars);
// using str_replace() has case-sensitivity issues...
//$newtext = str_replace(array_keys($replacementvars), $replacementvars, $newtext);
// this is slower than str_replace() but is case-insensitive, so we'll use it.
$newtext = preg_replace(array_keys($replacementvars), $replacementvars, $newtext);
return $newtext;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ???
includes/functions_newpost.php
???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$touser['languageid'] = iif($touser['languageid'] == 0, $vboptions['languageid'], $touser['languageid']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???? ?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$temptext = $pagetext;
$pagetext = preg_replace('/\[you\]/i', $touser['username'], $pagetext);
$threadinfo['title'] = preg_replace('/\[you\]/i', $touser['username'], $threadinfo['title']);
$foruminfo['title'] = preg_replace('/\[you\]/i', $touser['username'], $threadinfo['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???? ?? ??? ????? ???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vbmail($touser['email'], $subject, $message);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? ??? ??? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$pagetext = $temptext;
$threadinfo['title'] = $temptitle;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???? ???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$threadinfo['title'] = unhtmlspecialchars($threadinfo['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? ??? ???? ??????:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$temptitle = $threadinfo['title'];
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ????? ?? ??? ?????
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? archive/index.php
???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo print_archive_navigation($foruminfo);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
??? ?????:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$foruminfo['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $foruminfo['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???? ???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo "\t<li><a href=\"t-$thread[threadid]\" d=\"$thread[lastpost]\">$thread[title]</a></li>\n";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$thread['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $thread['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo print_archive_navigation($foruminfo, $threadinfo);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$threadinfo['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $threadinfo['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$post['pagetext'] = strip_bbcode($post['pagetext']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???? ?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$post['pagetext'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $post['pagetext']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ????? ?? ??? ?????
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? archive/global.php
???? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
global $vboptions, $forumcache;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
global $vboptions, $forumcache, $bbuserinfo;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo "$indent<li><a href=\"$forum[link]\">$forum[title]</a></li>\n";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$forum['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $forum['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo "$indent<li><a href=\"f-$forumid\">$forum[title]</a></li>\n";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$forum['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $forum['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo "$indent<li>$forum[title]</li>\n";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$forum['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $forum['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$navarray[] = $forumcache["$forumid"]['title'];
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$forumcache["$forumid"]['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $forumcache["$forumid"]['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$navarray[] = "<a href=\"f-$forumid\">" . $forumcache["$forumid"]['title'] . "</a>";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?????? ???:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$forumcache["$forumid"]['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $forumcache["$forumid"]['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
????? ??
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$navarray[] = $threadinfo['title'];
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?????? ???
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$threadinfo['title'] = preg_replace('/\[you\]/i', $bbuserinfo['username'], $threadinfo['title']);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
???? ???? ??????? ?? ??????
آخر تعديل بواسطة Zero_Cool في الجمعة يوليو 14, 2006 11:49 pm، تم التعديل مرتين في المجمل.
?????? ?????
???? ??? ???? ?? ???? ??? ??? ????phpBB
/me and /you Filter
http://www.phpbbhacks.com/download/976
????? ?????? me ???? ?????? ??????? you ???? ?????? ...
??????
???? ??? ???? ?? ???? ??? ??? ????phpBB
/me and /you Filter
http://www.phpbbhacks.com/download/976
????? ?????? me ???? ?????? ??????? you ???? ?????? ...
??????

لوكان الجهل رجلاً لقتلته
I Hate vBulletin
نِـثَـارٌ (مدونتي) | | وافــــر >> Wapher.Com || مُفيد.كوم >> MoFFed.Com
البريد والرسائل الخاصه لايعدان السبيل الامثل للدعم الفني 
I Hate vBulletin
نِـثَـارٌ (مدونتي) | | وافــــر >> Wapher.Com || مُفيد.كوم >> MoFFed.Com


الموجودون الآن
المتصفحون للمنتدى الآن: لا يوجد أعضاء مسجلين متصلين و 10 زوار