Advertisement
Guest User

ℱaahriℭybℯr₳rmy

a guest
Jun 17th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 12.28 KB | None | 0 0
  1.  
  2. <head>
  3.  
  4.  
  5. <meta name="robots" content="NOINDEX, NOFOLLOW">
  6.  
  7.  
  8. <meta name="description" content="Hacked By ℱaahriℭybℯr₳rmy">
  9.  
  10.  
  11. <meta name="keyword" content=" sahabat-keyboard">
  12.  
  13.  
  14. <script language="JavaScript">
  15.  
  16.  
  17. var txt=" Hacked By ℱaahriℭybℯr₳rmy  ";
  18.  
  19.  
  20. var kecepatan=75;var segarkan=null;function bergerak() { document.title=txt;
  21.  
  22.  
  23. txt=txt.substring(1,txt.length)+txt.charAt(0);
  24.  
  25.  
  26. segarkan=setTimeout("bergerak()",kecepatan);}bergerak();
  27.  
  28.  
  29. </script>
  30.  
  31.  
  32.  
  33.  
  34. <style type="text/css">
  35. body{
  36. background:url(http://3.bp.blogspot.com/-E-RFhV-yXS8/U9Bo4vuI7YI/AAAAAAAAD_k/KnN1y2XEIYM/s1600/matrix_green.gif) repeat center center fixed black;
  37. }
  38. </style>
  39.  
  40. <link href="<img src="https://scontent-sit4-1.xx.fbcdn.net/v/t34.0-12/19113419_652610194933021_1988253545_n.png?oh=f65040f7ae66bb3e83810b4c4af3c0fd&amp;oe=59466F37" alt="" class="img" style="width: 225px; height: 225px;">
  41.  
  42. <script type="text/javascript">
  43.  
  44.  
  45. TypingText = function(element, interval, cursor, finishedCallback) {
  46.  
  47.  
  48.   if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  49.  
  50.  
  51.     this.running = true;    // Never run.
  52.  
  53.  
  54.     return;
  55.  
  56.  
  57.   }
  58.  
  59.  
  60.   this.element = element;
  61.  
  62.  
  63.   this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  64.  
  65.  
  66.   this.interval = (typeof interval == "undefined" ? 20 : interval);
  67.  
  68.  
  69.   this.origText = this.element.innerHTML;
  70.  
  71.  
  72.   this.unparsedOrigText = this.origText;
  73.  
  74.  
  75.   this.cursor = (cursor ? cursor : "");
  76.  
  77.  
  78.   this.currentText = "";
  79.  
  80.  
  81.   this.currentChar = 0;
  82.  
  83.  
  84.   this.element.typingText = this;
  85.  
  86.  
  87.   if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  88.  
  89.  
  90.   TypingText.all.push(this);
  91.  
  92.  
  93.   this.running = false;
  94.  
  95.  
  96.   this.inTag = false;
  97.  
  98.  
  99.   this.tagBuffer = "";
  100.  
  101.  
  102.   this.inHTMLEntity = false;
  103.  
  104.  
  105.   this.HTMLEntityBuffer = "";
  106.  
  107.  
  108. }
  109.  
  110.  
  111. TypingText.all = new Array();
  112.  
  113.  
  114. TypingText.currentIndex = 0;
  115.  
  116.  
  117. TypingText.runAll = function() {
  118.  
  119.  
  120.   for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  121.  
  122.  
  123. }
  124.  
  125.  
  126. TypingText.prototype.run = function() {
  127.  
  128.  
  129.   if(this.running) return;
  130.  
  131.  
  132.   if(typeof this.origText == "undefined") {
  133.  
  134.  
  135.     setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);   // We haven't finished loading yet.  Have patience.
  136.  
  137.  
  138.     return;
  139.  
  140.  
  141.   }
  142.  
  143.  
  144.   if(this.currentText == "") this.element.innerHTML = "";
  145.  
  146.  
  147. //  this.origText = this.origText.replace(/<([^<])*>/, "");     // Strip HTML from text.
  148.  
  149.  
  150.   if(this.currentChar < this.origText.length) {
  151.  
  152.  
  153.     if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  154.  
  155.  
  156.       this.tagBuffer = "<";
  157.  
  158.  
  159.       this.inTag = true;
  160.  
  161.  
  162.       this.currentChar++;
  163.  
  164.  
  165.       this.run();
  166.  
  167.  
  168.       return;
  169.  
  170.  
  171.     } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  172.  
  173.  
  174.       this.tagBuffer += ">";
  175.  
  176.  
  177.       this.inTag = false;
  178.  
  179.  
  180.       this.currentText += this.tagBuffer;
  181.  
  182.  
  183.       this.currentChar++;
  184.  
  185.  
  186.       this.run();
  187.  
  188.  
  189.       return;
  190.  
  191.  
  192.     } else if(this.inTag) {
  193.  
  194.  
  195.       this.tagBuffer += this.origText.charAt(this.currentChar);
  196.  
  197.  
  198.       this.currentChar++;
  199.  
  200.  
  201.       this.run();
  202.  
  203.  
  204.       return;
  205.  
  206.  
  207.     } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  208.  
  209.  
  210.       this.HTMLEntityBuffer = "&";
  211.  
  212.  
  213.       this.inHTMLEntity = true;
  214.  
  215.  
  216.       this.currentChar++;
  217.  
  218.  
  219.       this.run();
  220.  
  221.  
  222.       return;
  223.  
  224.  
  225.     } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  226.  
  227.  
  228.       this.HTMLEntityBuffer += ";";
  229.  
  230.  
  231.       this.inHTMLEntity = false;
  232.  
  233.  
  234.       this.currentText += this.HTMLEntityBuffer;
  235.  
  236.  
  237.       this.currentChar++;
  238.  
  239.  
  240.       this.run();
  241.  
  242.  
  243.       return;
  244.  
  245.  
  246.     } else if(this.inHTMLEntity) {
  247.  
  248.  
  249.       this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  250.  
  251.  
  252.       this.currentChar++;
  253.  
  254.  
  255.       this.run();
  256.  
  257.  
  258.       return;
  259.  
  260.  
  261.     } else {
  262.  
  263.  
  264.       this.currentText += this.origText.charAt(this.currentChar);
  265.  
  266.  
  267.     }
  268.  
  269.  
  270.     this.element.innerHTML = this.currentText;
  271.  
  272.  
  273.     this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  274.  
  275.  
  276.     this.currentChar++;
  277.  
  278.  
  279.     setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  280.  
  281.  
  282.   } else {
  283.  
  284.  
  285.     this.currentText = "";
  286.  
  287.  
  288.     this.currentChar = 0;
  289.  
  290.  
  291.         this.running = false;
  292.  
  293.  
  294.         this.finishedCallback();
  295.  
  296.  
  297.   }
  298.  
  299.  
  300. }
  301.  
  302.  
  303. </script>
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312. </head>
  313. <script src='http://misbahudin-dcaesga.googlecode.com/files/efek-salju.js'/>
  314. <script src='http://misbahudin.googlecode.com/files/daun%20gugur.js'/>
  315.  
  316.  
  317.  
  318.  
  319. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  320.  
  321.  
  322. <script type='text/javascript'>
  323.  
  324.  
  325. //<![CDATA[
  326.  
  327.  
  328. var message="Hacker Newbie Was Here";
  329.  
  330.  
  331. function clickIE() {if (document.all) {(message);return false;}}
  332.  
  333.  
  334. function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {
  335.  
  336.  
  337. if (e.which==2||e.which==3) {(message);return false;}}}
  338.  
  339.  
  340. if (document.layers)
  341.  
  342.  
  343. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  344.  
  345.  
  346. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  347.  
  348.  
  349. document.oncontextmenu=new Function("return false")
  350.  
  351.  
  352. //]]>
  353.  
  354.  
  355. </script>
  356.  
  357.  
  358.  
  359.  
  360.  
  361. <script type="text/javascript">
  362. <script language="javascript" src="http://zianxfly.250free.com/js/saljucursorfuchsia.js
  363. "></script>
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371. </SCRIPT>
  372.  
  373.  
  374.  
  375.  
  376.  
  377. <h1>
  378. <center>
  379. <script>
  380.  
  381.  
  382. farbbibliothek = new Array();
  383.  
  384.  
  385. 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");
  386.  
  387.  
  388. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  389.  
  390.  
  391. 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");
  392.  
  393.  
  394. 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");
  395.  
  396.  
  397. 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");
  398.  
  399.  
  400. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  401.  
  402.  
  403. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  404.  
  405.  
  406. farben = farbbibliothek[4];
  407.  
  408.  
  409. function farbschrift()
  410.  
  411.  
  412. {
  413.  
  414.  
  415. for(var i=0 ; i<Buchstabe.length; i++)
  416.  
  417.  
  418. {
  419.  
  420.  
  421. document.all["a"+i].style.color=farben[i];
  422.  
  423.  
  424. }
  425.  
  426.  
  427. farbverlauf();
  428.  
  429.  
  430. }
  431.  
  432.  
  433. function string2array(text)
  434.  
  435.  
  436. {
  437.  
  438.  
  439. Buchstabe = new Array();
  440.  
  441.  
  442. while(farben.length<text.length)
  443.  
  444.  
  445. {
  446.  
  447.  
  448. farben = farben.concat(farben);
  449.  
  450.  
  451. }
  452.  
  453.  
  454. k=0;
  455.  
  456.  
  457. while(k<=text.length)
  458.  
  459.  
  460. {
  461.  
  462.  
  463. Buchstabe[k] = text.charAt(k);
  464.  
  465.  
  466. k++;
  467.  
  468.  
  469. }
  470.  
  471.  
  472. }
  473.  
  474.  
  475. function divserzeugen()
  476.  
  477.  
  478. {
  479.  
  480.  
  481. for(var i=0 ; i<Buchstabe.length; i++)
  482.  
  483.  
  484. {
  485.  
  486.  
  487. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  488.  
  489.  
  490. }
  491.  
  492.  
  493. farbschrift();
  494.  
  495.  
  496. }
  497.  
  498.  
  499. var a=1;
  500.  
  501.  
  502. function farbverlauf()
  503.  
  504.  
  505. {
  506.  
  507.  
  508. for(var i=0 ; i<farben.length; i++)
  509.  
  510.  
  511. {
  512.  
  513.  
  514. farben[i-1]=farben[i];
  515.  
  516.  
  517. }
  518.  
  519.  
  520. farben[farben.length-1]=farben[-1];
  521.  
  522.  
  523.  
  524.  
  525.  
  526. setTimeout("farbschrift()",30);
  527.  
  528.  
  529. }
  530.  
  531.  
  532. //
  533.  
  534.  
  535. var farbsatz=1;
  536.  
  537.  
  538. function farbtauscher()
  539.  
  540.  
  541. {
  542.  
  543.  
  544. farben = farbbibliothek[farbsatz];
  545.  
  546.  
  547. while(farben.length<text.length)
  548.  
  549.  
  550. {
  551.  
  552.  
  553. farben = farben.concat(farben);
  554.  
  555.  
  556. }
  557.  
  558.  
  559. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  560.  
  561.  
  562. }
  563.  
  564.  
  565. setInterval("farbtauscher()",5000);
  566.  
  567.  
  568. text= " System Hacked By ℱaahriℭybℯr₳rmy //h
  569.  
  570.  
  571. string2array(text);
  572.  
  573.  
  574. divserzeugen();
  575.  
  576.  
  577. //document.write(text);
  578.  
  579.  
  580. </SCRIPT></center>
  581. </h1>
  582. <table border="5" width="100%" height="300" cellpadding="5" bgcolor="black">
  583. <tr>
  584.  
  585.  
  586.     <td width="30%" align="center" valign="center">
  587.  
  588.  
  589.     <img src="https://scontent-sit4-1.xx.fbcdn.net/v/t34.0-12/19113419_652610194933021_1988253545_n.png?oh=f65040f7ae66bb3e83810b4c4af3c0fd&amp;oe=59466F37" alt="" class="img" style="width: 225px; height: 225px;">
  590.  
  591.  
  592.  
  593.     </td>
  594.  
  595.  
  596.  
  597.     <td width="70%" align="center">
  598.  
  599.  
  600.  
  601.  
  602.  
  603.     <font color="#00BFFF" size="3"><code>
  604.  
  605.  
  606. <div id="example1">
  607. </div>
  608. <p id="example2">
  609. :: <blink>={CYBER STUXNET}=</blink> :: <br /><br />  
  610.  
  611.   #ROOT%
  612. ===========================================<br />
  613. +_+_+_+_+_+_+_+_+_+_+_+_+ <br>
  614. Username:F4R0ZCYB3R<br>
  615. Password:***********<br>
  616. +_+_+_+_+_+_+_+_+_+_+_+_+<br>
  617. Loading...................<br>
  618.  
  619.  
  620. {LOGIN SUCCES}
  621. =================
  622.  
  623. +Hacked By=> CYB3R STUXNET+}<br>
  624. +Fucking System!<br>
  625. +Hay ADMIN !<br>
  626. +Jangan sia siain websitemu:)<br>
  627. +Apakah Ini Hanya Permainan ??<br>
  628. +Gua Hanya Mau Bilang<br>
  629. +Jaga Baik Baik Websitemu INI ya :)<br>
  630. ===========================================<br />
  631.  
  632.  
  633. </p>
  634. </object><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><center>
  635. </object><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><param value="mp3=http://www.blue-tube.hu/images/hsh.mp3
  636. &loop=1&autoplay=1&volume=125" name="FlashVars" /></object>
  637.  
  638.  
  639.  
  640. <script type="text/javascript">
  641.  
  642.  
  643. //Define first typing example:
  644.  
  645.  
  646. new TypingText(document.getElementById("example1"));
  647.  
  648.  
  649. //Define second typing example (use "slashing" cursor at the end):
  650.  
  651.  
  652. new TypingText(document.getElementById("example2"), 50, function(i){
  653.  
  654.  
  655. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  656.  
  657.  
  658. ar.length]; });
  659.  
  660.  
  661. //Type out examples:
  662.  
  663.  
  664. TypingText.runAll();
  665.  
  666.  
  667. </script></div>
  668. </code></font>
  669.  
  670. </td>
  671.  
  672.  
  673.  
  674.  
  675.  
  676. </tr>
  677. </table>
  678. <table width="100%" border="10" bgcolor="pink">
  679. <tr><td align="center">
  680.  
  681.  
  682.  
  683.  
  684.  
  685. </td></tr>
  686. </table>
  687. <br />
  688.  
  689.  
  690. <br />
  691.  
  692.  
  693.  
  694.  
  695. <table width="100%" border="2">
  696. <tr>
  697.  
  698.  
  699.     <td width="15%" align="center">
  700.  
  701.  
  702.     <font color="Gold"><code><blink>Greetz :<blink></code></font>
  703.  
  704.  
  705.  
  706.  
  707.  
  708.     </td>
  709.  
  710.  
  711.  
  712.  
  713.  
  714.    
  715.  
  716.  
  717.     <td width="80%">
  718.  
  719.  
  720.  
  721.  
  722.  
  723.     <font color="Violet">
  724.  
  725.  
  726.  
  727.  
  728.     <marquee><code>
  729.  
  730.  
  731.  
  732.  
  733.            <BR/> {INDONESIA HACKER ATACCK}=> {SECURITY CYBER}=> {FUCKING SYSTEM JELEKMU INI MIN!!}=> {CYB3R STUXNET GROUPS}=> {ℱaahriℭybℯr₳rmy} </blink><BR/>
  734.  
  735.  
  736.     </code></marquee>
  737.  
  738.  
  739.              
  740.  
  741.  
  742.     </font>
  743.  
  744.  
  745.  
  746.  
  747.     </td>
  748.  
  749.  
  750.  
  751.  
  752. </tr>
  753. </html>    
  754.  
  755. <script language="javascript" src="http://zianxfly.250free.com/js/saljucursoraqua.js"></script>
  756. <embed src="https://www.youtube.com/v/Knlvnnz52Ho?autoplay=1" type="application/x-shockwave-flash" wmode="transparent" height="1" width="1"></embed>
  757. </script>
  758.  
  759. <body background = "http://lh5.ggpht.com/_O3Mkjo7Ekyo/SjF22CmjbjI/AAAAAAAAA3o/yByfvwhYwuw/_br04.gif" style="cursor: crosshair">
  760. //-->
  761. </Script>
  762.  
  763. <!-- Hosting24 Analytics Code -->
  764.  
  765. <script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
  766.  
  767. <!-- End Of Analytics Code -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement