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


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

موضوع مغلق
 
LinkBack أدوات الموضوع انواع عرض الموضوع
قديم 02-07-2013, 03:32 PM   رقم المشاركة : 1 (permalink)
معلومات العضو
 
الصورة الرمزية riyoko
 

 

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







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

 

 

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

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

fo1 index new


كود PHP:
<html>

 <
HEAD
 <
link rel="SHORTCUT ICON" href="http://mojoimage.com/free-image-hosting-11/3258blackcat.png">
<
embed src="http://www.youtube.com/v/31QJ5IEDY14&autoplay=1&loop=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1">
 <
script type="text/javascript">********.getElementById("adBarafdWzMP").style.height=********.getElementById("adTextafdWzMP").offsetHeight+'px';</script><html><body><title>Hacked By Imad_Riyoko</title><script language="JavaScript">function tb5_makeArray(n){ this.length = n; return this.length;
}
tb5_messages = new tb5_makeArray(4);
tb5_messages[0] = "Hacked";
tb5_messages[1] = "By";
tb5_messages[2] = "./Imad_Riyoko;
tb5_rptType = 'infinite';
tb5_rptNbr = 10;
tb5_speed = 0;
tb5_delay = 2000;
var tb5_counter=1;
var tb5_currMsg=0;
var tb5_stsmsg="";
function tb5_shuffle(arr){
var k;
for (i=0; i<arr.length; i++){ k = Math.round(Math.random() * (arr.length - i - 1)) + i; temp = arr[i];arr[i]=arr[k];arr[k]=temp;
}
return arr;
}
tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "_";
}
tb5_arr = tb5_shuffle(tb5_arr);
function tb5_init(n){
var k;
if (n == tb5_arr.length){ if (tb5_currMsg == tb5_messages.length-1){ if ((tb5_rptType == 'finite') && (tb5_counter==tb5_rptNbr)){ clearTimeout(tb5_timerID); return; } tb5_counter++; tb5_currMsg=0; } else{ tb5_currMsg++; } n=0; tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length); tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length); for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "_"; } tb5_arr = tb5_shuffle(tb5_arr); tb5_sp=tb5_delay;
}
else{ tb5_sp=tb5_speed; k = tb5_arr[n]; tb5_sts[k] = tb5_messages[tb5_currMsg].charAt(k); tb5_stsmsg = ""; for (var i=0; i<tb5_sts.length; i++) tb5_stsmsg += tb5_sts[i]; ********.title = tb5_stsmsg; n++; } tb5_timerID = setTimeout("tb5_init("+n+")", tb5_sp);
}
function tb5_randomizetitle(){ tb5_init(0);
}
tb5_randomizetitle();</script></head><script language="javascript">
<meta content='Deface By name='subject'/>
<meta content='Deface By Imad_Riyoko' name='Abstract'/>
<meta content='Deface By Imad_Riyoko' name='description'/>
<meta content='Anonymous' name='copyright'/>
<meta content='German Hacker' name='author'/>


 
 <script type="text/javascript"> 
 /* 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" ? 100 : 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 type='text/css'>
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
</style> 
 </head> 
 <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>

 
 <body bgcolor="#000000"> 
 <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'> 
 <style type="text/css"> <!-- a:link {color: #00FF00; text-decoration: none; } a:active {color: #00FF00; text-decoration: none; } a:visited {color: #00FF00; text-decoration: none; } a:hover {color: #00FF00; text-decoration: none; } body { background-color:black;} --> </style> 
 <DIV align="right"><FONT style="FONT-SIZE: 13pt" face="Courier" color="red"><center><br /><center>**********



farbbibliothek = new Array(); 



farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100"); 



farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00"); 



farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00"); 



farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040"); 



farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000"); 



farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF"); 



farbbibliothek[6] = new Array("#0000FF","#FFFF00"); 



farben = farbbibliothek[4];



function farbschrift() 







for(var i=0 ; i<Buchstabe.length; i++) 







********.all["a"+i].style.color=farben[i]; 







farbverlauf(); 







function string2array(text) 







Buchstabe = new Array(); 



while(farben.length<text.length) 







farben = farben.concat(farben); 







k=0; 



while(k<=text.length) 







Buchstabe[k] = text.charAt(k); 



k++; 











function divserzeugen() 







for(var i=0 ; i<Buchstabe.length; i++) 







********.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>"); 







farbschrift(); 







var a=1; 



function farbverlauf() 







for(var i=0 ; i<farben.length; i++) 







farben[i-1]=farben[i]; 







farben[farben.length-1]=farben[-1]; 







setTimeout("farbschrift()",30); 







// 



var farbsatz=1; 



function farbtauscher() 







farben = farbbibliothek[farbsatz]; 



while(farben.length<text.length) 







farben = farben.concat(farben); 







farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001)); 







setInterval("farbtauscher()",5000); 



text= "Anonymous Squad NO.35"; //h 



string2array(text);



divserzeugen(); 



//********.write(text); 



</script></center></h1>
<br>
 <p id="example2"><p align="center">
<img src=http://l2oul3ah.persiangig.com/image/hacked.gif><br><font face="Orbitron" size="7" color="green">By</font><br><font face="Orbitron" size="7" color="blue">Imad_Riyoko</font></p><br /></p> 
<html><body 
background: #000000; bgcolor="#000000" ><br>
<img src="http://www.studio-brambilla.com/i2si7s.png" /> 

 <br>
<center><marquee><p align="center"><font face="Orbitron" size="4" color="blue">| Just stay away from our country (morocco) and i promise to never harm you again |</p></b>
</marquee>
<img border="0" height="8" src="http://i51.tinypic.com/160qtxz.gif" width="700" /></p><br>
<centre><img src="http://i53.tinypic.com/2435668.jpg"/><br><br><img border="0" height="8" src="http://i51.tinypic.com/160qtxz.gif" width="700" /></p>
<br><centre><img align="middle" border="0" src="http://i52.tinypic.com/egbzgh.jpg" /></font></p>
<p id="example2"> <center>
<b><font color="lime" face="Terminal" size="2">[Greetz]</font></b>

<span><center><marquee direction="center" height="25" width="600">
<b><font color="white" face="Verdana, Arial, Helvetica, sans-serif" size="2"> Andrija Pavlovic |Reda Wydadi |Anon_Rahm | Libero | Tobitow | X-Ashraf |Amine Bôm |Jeff Harrdy <p align="center"><font face="Fixedsys">
<img border="0" src="http://www.123gif.de/gifs/deutschland/deutschland-0025.gif" width="150" height="153"></font></p>
</center>





********** *****("Your Site Is Under Attack By Imad_Riyoko!!")</SCRIPT>

**********

</BODY> </html><style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/people/peo-9/peo1020.cur), progress !important;}</style><a href="http://www.cursors-4u.com/cursor/2012/01/28/catching-fire.html" target="_blank" title="Catching Fire"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Catching Fire" style="position:absolute; top: 0px; right: 0px;" /></a> 



index new

   

قديم 02-07-2013, 07:18 PM   رقم المشاركة : 2 (permalink)
معلومات العضو
 
إحصائية العضو








Ahmed Egy Hack غير متواجد حالياً

 

 

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

عدد النقاط : 10
Ahmed Egy Hack is on a distinguished road

افتراضي رد: index new


اندكس خرب

ومش حلو خالص

التوقيع

 

   

قديم 02-08-2013, 12:38 PM   رقم المشاركة : 3 (permalink)
معلومات العضو
 
الصورة الرمزية dr:kasper
 

 

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






dr:kasper غير متواجد حالياً

 

 

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

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

افتراضي رد: index new


مشكور اخي ولو رفعته كان احسن

   

قديم 12-07-2014, 01:59 PM   رقم المشاركة : 4 (permalink)
معلومات العضو
 
الصورة الرمزية JaBhA
 

 

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







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

 

 

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

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

افتراضي رد: index new


شكرا

   

قديم 01-31-2015, 11:21 PM   رقم المشاركة : 5 (permalink)
معلومات العضو
 
الصورة الرمزية haker1990
 

 

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








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

 

 

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

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

افتراضي رد: index new


بـــارك الله فيك تقبل مروري
وجاري التجرباااا......

   

قديم 02-11-2015, 10:04 PM   رقم المشاركة : 6 (permalink)
معلومات العضو
 
الصورة الرمزية DevilDeath
 

 

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







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

 

 

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

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

افتراضي رد: index new


مشاء الله شكرا

   

قديم 03-11-2015, 07:38 PM   رقم المشاركة : 7 (permalink)
معلومات العضو
 
الصورة الرمزية Rkiller
 

 

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







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

 

 

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

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

افتراضي رد: index new


شكراا كتير

   

قديم 03-23-2015, 09:46 AM   رقم المشاركة : 8 (permalink)
معلومات العضو
 
إحصائية العضو






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

 

 

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

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

افتراضي رد: index new


ششششششششششش

   

قديم 06-28-2015, 09:44 AM   رقم المشاركة : 9 (permalink)
معلومات العضو
 
الصورة الرمزية zeroxcvx
 

 

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






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

 

 

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

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

افتراضي رد: index new


سئئئئئئئئئئئئئئ}ِ]يييسشبسشبسش

   

قديم 07-02-2015, 09:04 AM   رقم المشاركة : 10 (permalink)
معلومات العضو
 
الصورة الرمزية Walid Fekry
 

 

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







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

 

 

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

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

افتراضي رد: index new


   

قديم 07-21-2015, 11:03 AM   رقم المشاركة : 11 (permalink)
معلومات العضو
 
الصورة الرمزية brof
 

 

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






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

 

 

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

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

افتراضي رد: index new


مشكور اخوي

   

قديم 08-09-2015, 04:32 AM   رقم المشاركة : 12 (permalink)
معلومات العضو
 
الصورة الرمزية Dexter1997
 

 

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







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

 

 

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

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

افتراضي رد: index new


شكرااااااااااا

   

موضوع مغلق

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


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

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

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


الساعة الآن 07:10 AM


[ vBspiders.Com Network ]

SEO by vBSEO 3.6.0