Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 15.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
  3.  
  4. <title>Hacked By Black Wolf</title>
  5. <link rel="shortcut icon" href="http://freefavicons.org/download/wolf/wolf.png" type="image/ico"/>
  6. <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js" type="text/javascript"></script>
  7. <script src="http://iamdanfox.github.io/typetype/jquery.typetype.min.js" type="text/javascript"></script>
  8. <body bgcolor="#2F2A2A">
  9.   <div align="center">
  10.     <big>
  11.       <font color=#00FF00>&#9733;</font>
  12.       <font color=#FFFFFF>&#9733;</font>
  13.       <font color=#00FF00>&#9733;</font>
  14.       <font color=#FFFFFF>&#9733;</font>
  15.       <font color=#00FF00>&#9733;</font>
  16.     </big>
  17.     <br>
  18.   <font size='10' face='Iceland' style='color: #AEAEAE; text-shadow: 0px 1px 7px #000;'><span style="color:#00ff00">Black Wolf</span> | <span style="color:#00ff00">Prez_</span> | <span style="color:#00ff00">CyberWolf</span></font>
  19.     <br>
  20.     <style type="text/css">
  21.         img {opacity:0.5;-webkit-transition:all 500ms ease;-moz-transition:all 500ms ease;-o-transition:all 500ms ease;transition:all 500ms ease;}
  22.         .terminal {width: 800px;min-height: 100px;border: 1px solid #0F0;border-radius: 5px;color: white;padding-left: 5px;padding-top: 5px;text-align:left;font-family:"Courier New", Courier, monospace;}
  23.         img:hover {opacity:1;-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);}
  24.         textarea{resize:none;border:none;background:transparent}
  25.         .marquee1 {color:#00ff00;text-shadow:0px 1px 14px #00ff00;}
  26.         .marquee2 {color:#fff;text-shadow:0px 1px 14px #fff;}
  27.         .typed-cursor{opacity: 1;-webkit-animation: blink 0.7s infinite;-moz-animation: blink 0.7s infinite;animation: blink 0.7s infinite;color:white;}
  28.         @keyframes blink{0% { opacity:1; }50% { opacity:0; }100% { opacity:1; }}
  29.         @-webkit-keyframes blink{0% { opacity:1; }50% { opacity:0; }100% { opacity:1; }}
  30.         @-moz-keyframes blink{0% { opacity:1; }50% { opacity:0; }100% { opacity:1; }}
  31.     </style>
  32.     <script type="text/javascript">
  33.     ! function($) {
  34.  
  35.       "use strict";
  36.  
  37.       var Typed = function(el, options) {
  38.  
  39.         // chosen element to manipulate text
  40.         this.el = $(el);
  41.  
  42.         // options
  43.         this.options = $.extend({}, $.fn.typed.defaults, options);
  44.  
  45.         // attribute to type into
  46.         this.isInput = this.el.is('input');
  47.         this.attr = this.options.attr;
  48.  
  49.         // show cursor
  50.         this.showCursor = this.isInput ? false : this.options.showCursor;
  51.  
  52.         // text content of element
  53.         this.elContent = this.attr ? this.el.attr(this.attr) : this.el.text()
  54.  
  55.         // html or plain text
  56.         this.contentType = this.options.contentType;
  57.  
  58.         // typing speed
  59.         this.typeSpeed = this.options.typeSpeed;
  60.  
  61.         // add a delay before typing starts
  62.         this.startDelay = this.options.startDelay;
  63.  
  64.         // backspacing speed
  65.         this.backSpeed = this.options.backSpeed;
  66.  
  67.         // amount of time to wait before backspacing
  68.         this.backDelay = this.options.backDelay;
  69.  
  70.         // input strings of text
  71.         this.strings = this.options.strings;
  72.  
  73.         // character number position of current string
  74.         this.strPos = 0;
  75.  
  76.         // current array position
  77.         this.arrayPos = 0;
  78.  
  79.         // number to stop backspacing on.
  80.         // default 0, can change depending on how many chars
  81.         // you want to remove at the time
  82.         this.stopNum = 0;
  83.  
  84.         // Looping logic
  85.         this.loop = this.options.loop;
  86.         this.loopCount = this.options.loopCount;
  87.         this.curLoop = 0;
  88.  
  89.         // for stopping
  90.         this.stop = false;
  91.  
  92.         // custom cursor
  93.         this.cursorChar = this.options.cursorChar;
  94.  
  95.         // All systems go!
  96.         this.build();
  97.       };
  98.  
  99.       Typed.prototype = {
  100.  
  101.         constructor: Typed
  102.  
  103.         ,
  104.         init: function() {
  105.           // begin the loop w/ first current string (global self.string)
  106.           // current string will be passed as an argument each time after this
  107.           var self = this;
  108.           self.timeout = setTimeout(function() {
  109.             // Start typing
  110.             self.typewrite(self.strings[self.arrayPos], self.strPos);
  111.           }, self.startDelay);
  112.         }
  113.  
  114.         ,
  115.         build: function() {
  116.           // Insert cursor
  117.           if (this.showCursor === true) {
  118.             this.cursor = $("<span class=\"typed-cursor\">" + this.cursorChar + "</span>");
  119.             this.el.after(this.cursor);
  120.           }
  121.           this.init();
  122.         }
  123.  
  124.         // pass current string state to each function, types 1 char per call
  125.         ,
  126.         typewrite: function(curString, curStrPos) {
  127.           // exit when stopped
  128.           if (this.stop === true) {
  129.             return;
  130.           }
  131.  
  132.           // varying values for setTimeout during typing
  133.           // can't be global since number changes each time loop is executed
  134.           var humanize = Math.round(Math.random() * (100 - 30)) + this.typeSpeed;
  135.           var self = this;
  136.  
  137.           // ------------- optional ------------- //
  138.           // backpaces a certain string faster
  139.           // ------------------------------------ //
  140.           // if (self.arrayPos == 1){
  141.           //  self.backDelay = 50;
  142.           // }
  143.           // else{ self.backDelay = 500; }
  144.  
  145.           // contain typing function in a timeout humanize'd delay
  146.           self.timeout = setTimeout(function() {
  147.             // check for an escape character before a pause value
  148.             // format: \^\d+ .. eg: ^1000 .. should be able to print the ^ too using ^^
  149.             // single ^ are removed from string
  150.             var charPause = 0;
  151.             var substr = curString.substr(curStrPos);
  152.             if (substr.charAt(0) === '^') {
  153.               var skip = 1; // skip atleast 1
  154.               if (/^\^\d+/.test(substr)) {
  155.                 substr = /\d+/.exec(substr)[0];
  156.                 skip += substr.length;
  157.                 charPause = parseInt(substr);
  158.               }
  159.  
  160.               // strip out the escape character and pause value so they're not printed
  161.               curString = curString.substring(0, curStrPos) + curString.substring(curStrPos + skip);
  162.             }
  163.  
  164.             if (self.contentType === 'html') {
  165.               // skip over html tags while typing
  166.               if (curString.substr(curStrPos).charAt(0) === '<') {
  167.                var tag = '';
  168.                while (curString.substr(curStrPos).charAt(0) !== '>') {
  169.                   tag += curString.substr(curStrPos).charAt(0);
  170.                   curStrPos++;
  171.                 }
  172.                 curStrPos++;
  173.                 tag += '>';
  174.               }
  175.             }
  176.  
  177.             // timeout for any pause after a character
  178.             self.timeout = setTimeout(function() {
  179.               if (curStrPos === curString.length) {
  180.                 // fires callback function
  181.                 self.options.onStringTyped(self.arrayPos);
  182.  
  183.                 // is this the final string
  184.                 if (self.arrayPos === self.strings.length - 1) {
  185.                   // animation that occurs on the last typed string
  186.                   self.options.callback();
  187.  
  188.                   self.curLoop++;
  189.  
  190.                   // quit if we wont loop back
  191.                   if (self.loop === false || self.curLoop === self.loopCount)
  192.                   return;
  193.                 }
  194.  
  195.                 self.timeout = setTimeout(function() {
  196.                   self.backspace(curString, curStrPos);
  197.                 }, self.backDelay);
  198.               } else {
  199.  
  200.                 /* call before functions if applicable */
  201.                 if (curStrPos === 0)
  202.                 self.options.preStringTyped(self.arrayPos);
  203.  
  204.                 // start typing each new char into existing string
  205.                 // curString: arg, self.el.html: original text inside element
  206.                 var nextString = self.elContent + curString.substr(0, curStrPos + 1);
  207.                 if (self.attr) {
  208.                   self.el.attr(self.attr, nextString);
  209.                 } else {
  210.                   if (self.contentType === 'html') {
  211.                     self.el.html(nextString);
  212.                   } else {
  213.                     self.el.text(nextString);
  214.                   }
  215.                 }
  216.  
  217.                 // add characters one by one
  218.                 curStrPos++;
  219.                 // loop the function
  220.                 self.typewrite(curString, curStrPos);
  221.               }
  222.               // end of character pause
  223.             }, charPause);
  224.  
  225.             // humanized value for typing
  226.           }, humanize);
  227.  
  228.         }
  229.  
  230.         ,
  231.         backspace: function(curString, curStrPos) {
  232.           // exit when stopped
  233.           if (this.stop === true) {
  234.             return;
  235.           }
  236.  
  237.           // varying values for setTimeout during typing
  238.           // can't be global since number changes each time loop is executed
  239.           var humanize = Math.round(Math.random() * (100 - 30)) + this.backSpeed;
  240.           var self = this;
  241.  
  242.           self.timeout = setTimeout(function() {
  243.  
  244.             // ----- this part is optional ----- //
  245.             // check string array position
  246.             // on the first string, only delete one word
  247.             // the stopNum actually represents the amount of chars to
  248.             // keep in the current string. In my case it's 14.
  249.             // if (self.arrayPos == 1){
  250.             //  self.stopNum = 14;
  251.             // }
  252.             //every other time, delete the whole typed string
  253.             // else{
  254.             //  self.stopNum = 0;
  255.             // }
  256.  
  257.             if (self.contentType === 'html') {
  258.               // skip over html tags while backspacing
  259.               if (curString.substr(curStrPos).charAt(0) === '>') {
  260.                 var tag = '';
  261.                 while (curString.substr(curStrPos).charAt(0) !== '<') {
  262.                  tag -= curString.substr(curStrPos).charAt(0);
  263.                  curStrPos--;
  264.                }
  265.                curStrPos--;
  266.                tag += '<';
  267.              }
  268.            }
  269.            // ----- continue important stuff ----- //
  270.            // replace text with base text + typed characters
  271.            var nextString = self.elContent + curString.substr(0, curStrPos);
  272.            if (self.attr) {
  273.              self.el.attr(self.attr, nextString);
  274.            } else {
  275.              if (self.contentType === 'html') {
  276.                self.el.html(nextString);
  277.              } else {
  278.                self.el.text(nextString);
  279.              }
  280.            }
  281.            // if the number (id of character in current string) is
  282.            // less than the stop number, keep going
  283.            if (curStrPos > self.stopNum) {
  284.               // subtract characters one by one
  285.               curStrPos--;
  286.               // loop the function
  287.               self.backspace(curString, curStrPos);
  288.             }
  289.             // if the stop number has been reached, increase
  290.             // array position to next string
  291.             else if (curStrPos <= self.stopNum) {
  292.              self.arrayPos++;
  293.  
  294.              if (self.arrayPos === self.strings.length) {
  295.                self.arrayPos = 0;
  296.                self.init();
  297.              } else
  298.              self.typewrite(self.strings[self.arrayPos], curStrPos);
  299.            }
  300.  
  301.            // humanized value for typing
  302.          }, humanize);
  303.  
  304.        }
  305.  
  306.        ,
  307.        reset: function() {
  308.          var self = this;
  309.          clearInterval(self.timeout);
  310.          var id = this.el.attr('id');
  311.          this.el.after('<span id="' + id + '"/>')
  312.           this.el.remove();
  313.           this.cursor.remove();
  314.           // Send the callback
  315.           self.options.resetCallback();
  316.         }
  317.  
  318.       };
  319.  
  320.       $.fn.typed = function(option) {
  321.         return this.each(function() {
  322.           var $this = $(this),
  323.           data = $this.data('typed'),
  324.           options = typeof option == 'object' && option;
  325.           if (!data) $this.data('typed', (data = new Typed(this, options)));
  326.           if (typeof option == 'string') data[option]();
  327.         });
  328.       };
  329.  
  330.       $.fn.typed.defaults = {
  331.         strings: ["These are the default values...", "You know what you should do?", "Use your own!", "Have a great day!"],
  332.         // typing speed
  333.         typeSpeed: 0,
  334.         // time before typing starts
  335.         startDelay: 0,
  336.         // backspacing speed
  337.         backSpeed: 0,
  338.         // time before backspacing
  339.         backDelay: 500,
  340.         // loop
  341.         loop: false,
  342.         // false = infinite
  343.         loopCount: false,
  344.         // show cursor
  345.         showCursor: true,
  346.         // character for cursor
  347.         cursorChar: "|",
  348.         // attribute to type (null == text)
  349.         attr: null,
  350.         // either html or text
  351.         contentType: 'html',
  352.         // call when done callback function
  353.         callback: function() {},
  354.         // starting callback function before each string
  355.         preStringTyped: function() {},
  356.         //callback for every typed string
  357.         onStringTyped: function() {},
  358.         // callback for reset
  359.         resetCallback: function() {}
  360.       };
  361.  
  362.  
  363.     }(window.jQuery);
  364.  
  365.     $(function(){
  366.       $(".element").typed({
  367.         strings: ["<font color=\"#D44242\">root@linux</font><font color=\"lightblue\">~</font><font color=\"#D44242\">$:</font> python ./attack.py -u www.Noobs.com -p 80 -shell shell.php --upload<br/><font color=\"#D44242\">root@linux</font><font color=\"lightblue\">~</font><font color=\"#D44242\">$:</font> The shell has been uploaded successfully.<br/><font color=\"#D44242\">root@linux</font><font color=\"lightblue\">~</font><font color=\"#D44242\">$:</font> python ./deface.py --mass-start<br/><font color=\"#D44242\">root@linux</font><font color=\"lightblue\">~</font><font color=\"#D44242\">$:</font> Defacing... ( ============================ ) 100% <br/><font color=\"#D44242\">root@linux</font><font color=\"lightblue\">~</font><font color=\"#D44242\">$:</font> Defacement, successfully done!."],
  368.         typeSpeed: 5
  369.       });
  370.     });
  371.     </script>
  372.  
  373.     <a href="https://www.facebook.com/pages/Black-Wolf/1538404479716220" target="_blank">
  374.         <img height="200" style="border-color:blue;border-radius:50%" src="http://i.imgur.com/ath35CM.png"/>
  375.     </a>
  376.  
  377. <br>
  378.     <font size="10" face="Iceland" style="color: #FFFFFF;">MSG TO ADMIN!:</font><br/>
  379.     <font size="5" face="Iceland" style="color: #FFFFFF;">
  380.       Never Underestimate the weak because he doesn't act with force, but with the mind...<br/>
  381.     </font>
  382. <br>
  383.     <div class="element terminal"></div>
  384. <br>
  385.     <font size="5" style='color: #AEAEAE;text-shadow: 0px 1px 7px #000;'>Members:</font>
  386. <br>
  387. <div style="background:transparent;
  388. border-left:2px solid #FFFFFF;
  389. border-right:2px solid #FFFFFF;
  390. border-radius:30px;
  391. padding:5px;
  392. width:600px;
  393. heigth:auto;">
  394. <marquee scrolldelay="20" margin-bottom="20px" scrollamount="2" behavior="left">
  395.   <b class="marquee1">~</b> <b class="marquee2">./Blackwolf</b> <b class="marquee1">~|~</b> <b class="marquee2">./Prez_</b> <b class="marquee1">~|~</b> <b class="marquee2">./CyberWolf</b> <b class="marquee1">~</b>
  396. </marquee>
  397. </div>
  398.  
  399. <!--embed src="http://www.youtube.com/v/LApS9G22cIU&amp;autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="1" height="1">-->
  400.  
  401. <!----------------right click lock---------------->
  402. <!--script type="text/javascript" src="http://mihantools.net/tools/click-l/click-l.js"></script>
  403. <div style="display:none"></div>-->
  404. <!--//-------------------------------------------->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement