يمنع منعاً باتاً رفع الملفات على المواقع التالية:
Ge.tt - mediafire.com - 4shared.com
مطلوب طاقم إشراف وأدارة للمنتدى, للمعنيين بالرجاء التواصل مع الادارة على البريد التالي :
vbspiders.network@gmail.com


العودة   :: vBspiders Professional Network :: > [ ::. الـقرصـنـة والأختراق ~ The Hidden World Of Hackers .:: ] > قـسـم إخـتـراق الـمـواقـع والـسـيرفـرات > قـسـم أدوات واندكـسات الإختراق

إضافة رد
 
LinkBack أدوات الموضوع انواع عرض الموضوع
قديم 06-29-2011, 06:10 AM   رقم المشاركة : 1 (permalink)
معلومات العضو
 
الصورة الرمزية Dr.Mix
 

 

 
إحصائية العضو







Dr.Mix غير متواجد حالياً

إرسال رسالة عبر MSN إلى Dr.Mix

 

 

إحصائية الترشيح

عدد النقاط : 10
Dr.Mix is on a distinguished road

افتراضي اندكس روعة !!!!!


اخواني احضرت لكم اندكس روعة مع انني استعملها لحد الان

مثال في موقع رافع عليه هده الاندكس

Here!!

كود الاندكس


كود PHP:
<html><head>
<!-- 
saved from url=(0025) -->
<!-- 
saved from url=(0018)/ --><script language="JavaScript">


<!--
// Hide the JavaScript from older browsers
(window.*****(" HACKED BY H@B0uBaM!x ")) 
// End hiding of script 
// --></script>
<script language="JavaScript1.2">               


<
html><head>
<
meta http-equiv="content-type" content="text/html; charset=UTF-8">
<
title>HackedBy H@B0uBaM!x</title></head><body style="background-image: url(http://alboraaq.com/jpg/myindex//p_0001.jpg);" vlink="#999999" alink="#993300" background="http://alboraaq.com/jpg/myindex//p_0001.jpg" bgcolor="#333366" link="#0066cc" text="#ffffff">
 <
owned by="" dashaxer=""><noscript></noscript><!-- --><script type="text/javascript" src="index.php_files/p.js"></script>********** 
/*
An object-oriented Typing Text script, to allow for multiple instances.
A script that causes any text inside any text element to be "typed out", one letter at a time. Note that any HTML tags will not be included in the typed output, to prevent them from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE v6.
Browsers that do not support this script will simply see the text fully displayed from the start, including any HTML tags.

 Functions defined:
  TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function(){return}]):
    Create a new TypingText object around the given element.  Optionally
    specify a delay between characters of interval milliseconds.
    cursor allows users to specify some HTML to be appended to the end of
    the string whilst typing.  Optionally, can also be a function which
    accepts the current text as an argument.  This allows the user to
    create a "dynamic cursor" which changes depending on the latest character
    or the current length of the string.
    finishedCallback allows advanced scripters to supply a function
    to be executed on finishing.  The function must accept no arguments.
 
  TypingText.run():
    Run the effect.
 
  static TypingText.runAll():
    Run all TypingText-enabled objects on the page.
*/
 
TypingText = function(element, interval, cursor, finishedCallback) {
  if((typeof ********.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
    this.running = true;    // Never run.
    return;
  }
  this.element = element;
  this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  this.interval = (typeof interval == "undefined" ? 20 : interval);
  this.origText = this.element.innerHTML;
  this.unparsedOrigText = this.origText;
  this.cursor = (cursor ? cursor : "");
  this.currentText = "";
  this.currentChar = 0;
  this.element.typingText = this;
  if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  TypingText.all.push(this);
  this.running = false;
  this.inTag = false;
  this.tagBuffer = "";
  this.inHTMLEntity = false;
  this.HTMLEntityBuffer = "";
}
TypingText.all = new Array();
TypingText.currentIndex = 0;
TypingText.runAll = function() {
  for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
}
TypingText.prototype.run = function() {
  if(this.running) return;
  if(typeof this.origText == "undefined") {
    setTimeout("********.getElementById('" + this.element.id + "').typingText.run()", this.interval);    // We haven't finished loading yet.  Have patience.
    return;
  }
  if(this.currentText == "") this.element.innerHTML = "";
//  this.origText = this.origText.replace(/<([^<])*>/, "");     // Strip HTML from text.
  if(this.currentChar < this.origText.length) {
    if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
      this.tagBuffer = "<";
      this.inTag = true;
      this.currentChar++;
      this.run();
      return;
    } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
      this.tagBuffer += ">";
      this.inTag = false;
      this.currentText += this.tagBuffer;
      this.currentChar++;
      this.run();
      return;
    } else if(this.inTag) {
      this.tagBuffer += this.origText.charAt(this.currentChar);
      this.currentChar++;
      this.run();
      return;
    } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
      this.HTMLEntityBuffer = "&";
      this.inHTMLEntity = true;
      this.currentChar++;
      this.run();
      return;
    } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
      this.HTMLEntityBuffer += ";";
      this.inHTMLEntity = false;
      this.currentText += this.HTMLEntityBuffer;
      this.currentChar++;
      this.run();
      return;
    } else if(this.inHTMLEntity) {
      this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
      this.currentChar++;
      this.run();
      return;
    } else {
      this.currentText += this.origText.charAt(this.currentChar);
    }
    this.element.innerHTML = this.currentText;
    this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
    this.currentChar++;
    setTimeout("********.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  } else {
    this.currentText = "";
    this.currentChar = 0;
        this.running = false;
        this.finishedCallback();
  }
}
</script>
<style> 
body {
    background-image:url('http://iasstes-team.com/p_0001.jpg');
    background-repeat: no-repeat;
    background-color: black;
color: white;
margin-top: 0px;
margin-left: 0px;
padding: 0;
margin-right: 0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:80%; font-family:Verdana; margin-bottom:0; background-position-y:50%
}
 
td{font-family: verdana; font-size: 20pt; color: green}
a{font-family: verdana; font-size: 20pt; color: silver}
/* REMOVE HORIZONTAL SCROLLBAR*/                     
       body {                                
    overflow-x: hidden;                        
</style>
<title>..:: Hacked By H@B0uBaM!x ::..</title>

<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<body style="background-image: url('http://store1.up-00.com/Mar10/dQk32017.jpg')">

<center>

 
<div id="example1">
<p>&nbsp;
</p>
<p>
<desinget by="" tooli=""></desinget></p>
<p>
<desinget by="" tooli=""></desinget></p>
<p>


<font color="#FF0000" size="5">


<b><font face="Georgia">Todays News Update: we got hacked!</font>

</b></font></p><p><b><font size="4" face="Georgia" color="#008000">So bad that our  
</font><font face="Georgia" size="4"><font color="#FF0000">security</font><font color="#008000"> 
sucks and we got </font><font color="#FF00FF">hacked</font></font><font face="Fixedsys" color="#008000"><font size="4">!..</font> 
</font><br>
    _______________________________________</b></p></div>
<p id="example2"><b><font face="Georgia"><br>
&nbsp;<font color="#FFFF00">Connecting......&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><br>

<font color="#C0C0C0">&nbsp;Connection</font> <font color="#FF00FF">complete

</font> <br>
<font color="#FFFF00">&nbsp;Changing......</font><br>
<font size="4" color="#FF00FF">U got </font><font color="#FF9900" size="4">hacked</font><font size="4" color="#FF00FF">!</font><br>

<font size="7">

<br>

<font color="#FF0000"> &nbsp;H@B0uBaM!x</font><font color="#00FFFF"> </font>was 

</font><font size="7" color="#FFFF00">here</font><br>

<br>

<font color="#FF9900"> &nbsp;H@B0uBaM!X</font> <br>
<font color="#800000">EMAiL</font>: <font size="4" color="#008080">OcKLove1@Hotmail.Com</font><font color="#800000"><span lang="en-us">&nbsp;&nbsp; 


<br>

<font color="#FF9900"> &nbsp;</font></span></font></font></b>Visit WwW.1streaming1.CoM</p><p><b>_______________________________________

</b></p></center><p align="center"><b><font face="Georgia"><br>
&nbsp;We Will <font color="#FF0000">Never</font> <font color="#FF9900">Stop</font> Hacking<br>
<font color="#FF00FF">Its not a game</font><br>

&nbsp;It's Our Job 
</font>
</b></p>

<center>
 

<p><b>_______________________________________
</b></p></center><p align="center"><b><font face="Georgia"><br>
  Greetz to : Team Triple Hack - Federal - Allah - Mr.Benladen &amp; all marrocan Hacker</font></b>s
</p>

<center>
 
<p>
<b><font face="Georgia"> &nbsp;Im Not Soooooooory Admin </font><font face="Fixedsys"><br>

</font></b></p>

<center>
 
<p>

<b><font face="Fixedsys"> 
<script type="text/javascript"> 
//Define first typing example:
new TypingText(********.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText(********.getElementById("example2"), 70, function(i){
var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length %
ar.length]; });
//Type out examples:
TypingText.runAll();
</script>
</font></b></p><p align="center">
<span style='filter:"blur\(add1\,direction270\,strength30\)"'>
  <span class=SpellE>
 <hide> <embed name=video pluginspage="http://www.real.com/player/"
  src="http://h1.******.com/triple123/arwa7.mp3"
  width=165 height=62 type="audio/x-pn-realaudio-plugin" loop=true
  autostart=true nojava=true controls="ControlPanel,StatusBar" maintainaspect=false
  hidden> </hide></span></span>

<span style='filter:"blur\(add1\,direction270\,strength30\)"'><span class=SpellE>
  &nbsp;<o:p></o:p></span></span></p>
<p align="center">
  <object type="application/x-shockwave-flash" data="player_mp3_mini.swf" width="1" align="left" height="5">
    <b><font face="Fixedsys"></font></b>
  </object>
</p>
<object type="application/x-shockwave-flash" data="player_mp3_mini.swf" width="1" align="left" height="5">
  <b><font face="Fixedsys"><param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_mini.swf"><param name="bgcolor" value="#FFFFFF"><param name="FlashVars" value="mp3=http://www.ffaacebook.net/jaha.mp3
&amp;autoplay=1&amp;loadingcolor=000000&amp;buttoncolor=000000&amp;slidercolor=000000"></font></b></object>
<!-- -->
<script type="text/javascript" src="file:///E:/********s%20and%20Settings/***1575;***1576;***1608;%20***1593;***1605;***1585;/***1587;***1591;***1581;%20***1575;***1604;***1605;***1603;***1578;***1576;/***1605;***1604;***1601;***1575;***1578;%20***1607;***1603;***1585;***1610;***1577;/***1575;***1606;***1583;***1603;***1587;***1575;***1578;/index.php_files/i.js"></script>
<script src="file:///E:/********s%20and%20Settings/***1575;***1576;***1608;%20***1593;***1605;***1585;/***1587;***1591;***1581;%20***1575;***1604;***1605;***1603;***1578;***1576;/***1605;***1604;***1601;***1575;***1578;%20***1607;***1603;***1585;***1610;***1577;/***1575;***1606;***1583;***1603;***1587;***1575;***1578;/index.php_files/urchin.js"></script><script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script><b><font face="Fixedsys"> 
<script type="text/javascript" src="file:///E:/********s%20and%20Settings/***1575;***1576;***1608;%20***1593;***1605;***1585;/***1587;***1591;***1581;%20***1575;***1604;***1605;***1603;***1578;***1576;/***1605;***1604;***1601;***1575;***1578;%20***1607;***1603;***1585;***1610;***1577;/***1575;***1606;***1583;***1603;***1587;***1575;***1578;/index.php_files/quant.js"></script> <script type="text/javascript">_qacct="p-44naSaXtNJt26";quantserve();</script> <!-- -->

<script type="text/javascript" src="file:///E:/********s%20and%20Settings/***1575;***1576;***1608;%20***1593;***1605;***1585;/***1587;***1591;***1581;%20***1575;***1604;***1605;***1603;***1578;***1576;/***1605;***1604;***1601;***1575;***1578;%20***1607;***1603;***1585;***1610;***1577;/***1575;***1606;***1583;***1603;***1587;***1575;***1578;/index.php_files/i.js"></script><script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script> 
<script type="text/javascript" src="file:///E:/********s%20and%20Settings/***1575;***1576;***1608;%20***1593;***1605;***1585;/***1587;***1591;***1581;%20***1575;***1604;***1605;***1603;***1578;***1576;/***1605;***1604;***1601;***1575;***1578;%20***1607;***1603;***1585;***1610;***1577;/***1575;***1606;***1583;***1603;***1587;***1575;***1578;/index.php_files/quant.js"></script> <script type="text/javascript">_qacct="p-44naSaXtNJt26";quantserve();</script> </font></b><center><p>
<b><font color="red"><br>
</font></b></p></center></center></center></owned></body></html> 

ما عليك يا عزيزي الى تغير اسمي الى اسمك في الاندكس وتمتع


hk];s v,um !!!!!

التوقيع

قريبا افتتاح دورة الافتر افكتس من طرف DR.MIX

http://img11.hostingpics.net/pics/36...sDisk00054.jpg

تابعونا

 

   

رد مع اقتباس
قديم 06-29-2011, 06:20 AM   رقم المشاركة : 2 (permalink)
معلومات العضو
 
الصورة الرمزية Saad Ghamdi
 

 

 
إحصائية العضو







Saad Ghamdi غير متواجد حالياً

 

 

إحصائية الترشيح

عدد النقاط : 11
Saad Ghamdi is on a distinguished road

افتراضي


وآصل ، يابطل اندكس جميله
التوقيع

Don't let idiots ruin your day

 

   

رد مع اقتباس
قديم 06-29-2011, 06:28 AM   رقم المشاركة : 3 (permalink)
معلومات العضو
 
إحصائية العضو






جنازة هكر غير متواجد حالياً

 

 

إحصائية الترشيح

عدد النقاط : 10
جنازة هكر is on a distinguished road

افتراضي


آندكسَ

روعـــــــــــهَ ،،

في قــمة الروعه

التوقيع

#~u_f@hotmail.com~#ً

سبحان الله وبحمده،ًَ & سبحان الله العظيم

 

   

رد مع اقتباس
قديم 07-22-2011, 01:45 PM   رقم المشاركة : 4 (permalink)
معلومات العضو
 
الصورة الرمزية golden touch
 

 

 
إحصائية العضو






golden touch غير متواجد حالياً

 

 

إحصائية الترشيح

عدد النقاط : 10
golden touch is on a distinguished road

افتراضي


جميللللللللللللللللللللللللللللللللللل اخخخخخخخخخخخخخخخخخخخخ

   

رد مع اقتباس
قديم 07-24-2011, 06:21 PM   رقم المشاركة : 5 (permalink)
معلومات العضو
 
الصورة الرمزية ahmedrocky
 

 

 
إحصائية العضو





ahmedrocky غير متواجد حالياً

 

 

إحصائية الترشيح

عدد النقاط : 10
ahmedrocky is on a distinguished road

افتراضي


thnxxxxxxxxxxxxxxxxxxxxxxxxx

   

رد مع اقتباس
إضافة رد

مواقع النشر (المفضلة)


تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة
Trackbacks are متاحة
Pingbacks are متاحة
Refbacks are متاحة

الانتقال السريع


الساعة الآن 01:04 AM


[ vBspiders.Com Network ]

SEO by vBSEO 3.6.0