[مجابة] هاك : يوهم الزائر انه هو

منتدى خاص للنقاش حول هاكات الجيل الثاني أفكارها، مشاكل تركيبها وكل ماله علاقة بها.

المشرف: alhitary

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

[?????] ??? : ???? ?????? ??? ??

مشاركةبواسطة Zero_Cool » الثلاثاء يونيو 27, 2006 2:44 pm

???? ?? ??? ????? ?????? ??? ???? ?? ??????? ??????
???? ????? ?? ???? ??? ????? ???? ?? ???? ??? 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، تم التعديل مرتين في المجمل.
منتديات نجوم سوريا
http://www.souriastars.com

صورة




AC
المؤسس
المؤسس
مشاركات: 1939
اشترك في: الجمعة مايو 17, 2002 7:32 am
مكان: السعودية
اتصال:

مشاركةبواسطة AC » الأربعاء يونيو 28, 2006 2:33 am

?????? ?????

???? ??? ???? ?? ???? ??? ??? ????phpBB

/me and /you Filter
http://www.phpbbhacks.com/download/976

????? ?????? me ???? ?????? ??????? you ???? ?????? ...

?????? :)
لوكان الجهل رجلاً لقتلته

I Hate vBulletin

نِـثَـارٌ (مدونتي) | | وافــــر >> Wapher.Com || مُفيد.كوم >> MoFFed.Com

:idea: البريد والرسائل الخاصه لايعدان السبيل الامثل للدعم الفني :idea:

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » الأربعاء يونيو 28, 2006 1:24 pm

????? ?????? ??? ???? ?????? ..
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » السبت يونيو 02, 2007 1:34 am

??? ?????? ?? ???? ????? ??? ???? ??? ?????? ?? ????? ???????? ??????? ??????? ???? ???????? ????? ?
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
naserhaq
عضو نشيط
عضو نشيط
مشاركات: 122
اشترك في: الجمعة إبريل 16, 2004 10:42 am
اتصال:

مشاركةبواسطة naserhaq » السبت يونيو 02, 2007 8:20 am

?? ???? ??? ????? ?? ??????????


العودة إلى ”[ ×.2.0 ] الهاكات“

الموجودون الآن

المتصفحون للمنتدى الآن: Semrush [Bot] و 5 زوار