Advertisement
DjLvke

#VSHOpChinaDown

Aug 20th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 16.34 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <!doctype html>
  5. <head>
  6. <title>VirSec Hackers</title>
  7.   <link rel="SHORTCUT ICON" href="http://i.imgur.com/gW84ROT.png" type="image/gif">
  8.     <meta name="Author" content="Hacked By VirSec Hackers"/>
  9.     <meta name="copyright" content="VirSec Hackers"/>
  10.     <meta name="description" content="Website Hacked by VirSec Hackers."/>
  11.     <link href="http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css"/>
  12.     <link href="http://fonts.googleapis.com/css?family=Iceberg" rel="stylesheet" type="text/css"/>
  13.     <link href="http://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet" type="text/css"/>
  14.     <link href='http://fonts.googleapis.com/css?family=Abel:700' rel='stylesheet' type='text/css'>
  15.     <link href='http://fonts.googleapis.com/css?family=Abel:400' rel='stylesheet' type='text/css'>
  16.     <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur862.ani), url(http://cur.cursors-4u.net/cursors/cur-9/cur862.png), progress !important;}</style><a href="http://www.cursors-4u.com/cursor/2011/11/22/night-diamond-bloody-red-link-select.html" target="_blank" title="Night Diamond Bloody Red - Link Select"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Night Diamond Bloody Red - Link Select" style="position:absolute; top: 0px; right: 0px;" /></a>
  17. <link href="http://fonts.googleapis.com/css?family=Orbitron:400,900" rel="stylesheet"    
  18. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  19.     <script type="text/javascript">
  20. ! function($) {
  21.  
  22.     "use strict";
  23.  
  24.     var Typed = function(el, options) {
  25. this.el = $(el);
  26.  this.options = $.extend({}, $.fn.typed.defaults, options);
  27.  this.isInput = this.el.is('input');
  28. this.attr = this.options.attr;
  29. this.showCursor = this.isInput ? false : this.options.showCursor;
  30. this.elContent = this.attr ? this.el.attr(this.attr) : this.el.text()
  31. this.contentType = this.options.contentType;
  32. this.typeSpeed = this.options.typeSpeed;
  33. this.startDelay = this.options.startDelay;
  34. this.backSpeed = this.options.backSpeed;
  35. this.backDelay = this.options.backDelay;
  36. this.strings = this.options.strings;
  37. this.strPos = 0;
  38. this.arrayPos = 0;
  39. this.stopNum = 0;
  40. this.loop = this.options.loop;
  41. this.loopCount = this.options.loopCount;
  42. this.curLoop = 0;
  43. this.stop = false;
  44. this.cursorChar = this.options.cursorChar;
  45. this.build();
  46. };
  47.  
  48.     Typed.prototype = {
  49.  
  50.         constructor: Typed
  51.         ,
  52. init: function() {
  53.  
  54.             var self = this;
  55.             self.timeout = setTimeout(function() {
  56.                 self.typewrite(self.strings[self.arrayPos], self.strPos);
  57.             }, self.startDelay);
  58.         }
  59.  
  60.         ,
  61.         build: function() {
  62.             if (this.showCursor === true) {
  63.                 this.cursor = $("<span class=\"typed-cursor\">" + this.cursorChar + "</span>");
  64.                 this.el.after(this.cursor);
  65.             }
  66.             this.init();
  67.         }
  68.  
  69.         ,
  70.         typewrite: function(curString, curStrPos) {
  71.             if (this.stop === true) {
  72.                 return;
  73.             }
  74.  
  75.             var humanize = Math.round(Math.random() * (100 - 30)) + this.typeSpeed;
  76.             var self = this;
  77.             self.timeout = setTimeout(function() {
  78.                 var charPause = 0;
  79.                 var substr = curString.substr(curStrPos);
  80.                 if (substr.charAt(0) === '^') {
  81.                     var skip = 1;
  82.                     if (/^\^\d+/.test(substr)) {
  83.                         substr = /\d+/.exec(substr)[0];
  84.                         skip += substr.length;
  85.                         charPause = parseInt(substr);
  86.                     }
  87.  
  88.                     curString = curString.substring(0, curStrPos) + curString.substring(curStrPos + skip);
  89.                 }
  90.  
  91.                 if (self.contentType === 'html') {
  92.                     var curChar = curString.substr(curStrPos).charAt(0)
  93.                     if (curChar === '<' || curChar === '&') {
  94.                        var tag = '';
  95.                        var endTag = '';
  96.                        if (curChar === '<') {
  97.                            endTag = '>'
  98.                         } else {
  99.                             endTag = ';'
  100.                         }
  101.                         while (curString.substr(curStrPos).charAt(0) !== endTag) {
  102.                             tag += curString.substr(curStrPos).charAt(0);
  103.                             curStrPos++;
  104.                         }
  105.                         curStrPos++;
  106.                         tag += endTag;
  107.                     }
  108.                 }
  109.  
  110.                 self.timeout = setTimeout(function() {
  111.                     if (curStrPos === curString.length) {
  112.                         self.options.onStringTyped(self.arrayPos);
  113.  
  114.                         if (self.arrayPos === self.strings.length - 1) {
  115.  
  116.                             self.options.callback();
  117.  
  118.                             self.curLoop++;
  119.  
  120.                             if (self.loop === false || self.curLoop === self.loopCount)
  121.                                 return;
  122.                         }
  123.  
  124.                         self.timeout = setTimeout(function() {
  125.                             self.backspace(curString, curStrPos);
  126.                         }, self.backDelay);
  127.                     } else {
  128.  
  129.                         if (curStrPos === 0)
  130.                             self.options.preStringTyped(self.arrayPos);
  131.  
  132.                         var nextString = curString.substr(0, curStrPos + 1);
  133.                         if (self.attr) {
  134.                             self.el.attr(self.attr, nextString);
  135.                         } else {
  136.                             if (self.isInput) {
  137.                                 self.el.val(nextString);
  138.                             } else if (self.contentType === 'html') {
  139.                                 self.el.html(nextString);
  140.                             } else {
  141.                                 self.el.text(nextString);
  142.                             }
  143.                         }
  144.  
  145.  
  146.                         curStrPos++;
  147.  
  148.                         self.typewrite(curString, curStrPos);
  149.                     }
  150.  
  151.                 }, charPause);
  152.  
  153.             }, humanize);
  154.  
  155.         }
  156.  
  157.         ,
  158.         backspace: function(curString, curStrPos) {
  159.             if (this.stop === true) {
  160.                 return;
  161.             }
  162.  
  163.             var humanize = Math.round(Math.random() * (100 - 30)) + this.backSpeed;
  164.             var self = this;
  165.  
  166.             self.timeout = setTimeout(function() {
  167.  
  168.                 if (self.contentType === 'html') {
  169.  
  170.                     if (curString.substr(curStrPos).charAt(0) === '>') {
  171.                         var tag = '';
  172.                         while (curString.substr(curStrPos).charAt(0) !== '<') {
  173.                            tag -= curString.substr(curStrPos).charAt(0);
  174.                            curStrPos--;
  175.                        }
  176.                        curStrPos--;
  177.                        tag += '<';
  178.                    }
  179.                }
  180.                var nextString = curString.substr(0, curStrPos);
  181.                if (self.attr) {
  182.                    self.el.attr(self.attr, nextString);
  183.                } else {
  184.                    if (self.isInput) {
  185.                        self.el.val(nextString);
  186.                    } else if (self.contentType === 'html') {
  187.                        self.el.html(nextString);
  188.                    } else {
  189.                        self.el.text(nextString);
  190.                    }
  191.                }
  192.                if (curStrPos > self.stopNum) {
  193.  
  194.                     curStrPos--;
  195.  
  196.                     self.backspace(curString, curStrPos);
  197.                 }
  198.  
  199.                 else if (curStrPos <= self.stopNum) {
  200.                    self.arrayPos++;
  201.  
  202.                    if (self.arrayPos === self.strings.length) {
  203.                        self.arrayPos = 0;
  204.                        self.init();
  205.                    } else
  206.                        self.typewrite(self.strings[self.arrayPos], curStrPos);
  207.                }
  208.  
  209.            }, humanize);
  210.  
  211.        }
  212.  
  213.        ,
  214.        reset: function() {
  215.            var self = this;
  216.            clearInterval(self.timeout);
  217.            var id = this.el.attr('id');
  218.            this.el.after('<span id="' + id + '"/>')
  219.             this.el.remove();
  220.             if (typeof this.cursor !== 'undefined') {
  221.                 this.cursor.remove();
  222.             }
  223.             self.options.resetCallback();
  224.         }
  225.  
  226.     };
  227.  
  228.     $.fn.typed = function(option) {
  229.         return this.each(function() {
  230.             var $this = $(this),
  231.                 data = $this.data('typed'),
  232.                 options = typeof option == 'object' && option;
  233.             if (!data) $this.data('typed', (data = new Typed(this, options)));
  234.             if (typeof option == 'string') data[option]();
  235.         });
  236.     };
  237.  
  238.     $.fn.typed.defaults = {
  239.         strings: [""],
  240.         typeSpeed: 0,
  241.         startDelay: 0,
  242.         backSpeed: 0,
  243.         backDelay: 500,
  244.         // loop
  245.         loop: false,
  246.         // false = infinite
  247.         loopCount: false,
  248.         showCursor: true,
  249.         cursorChar: "|",
  250.         attr: null,
  251.         contentType: 'html',
  252.         callback: function() {},
  253.         preStringTyped: function() {},
  254.         onStringTyped: function() {},
  255.         resetCallback: function() {}
  256.     };
  257.  
  258.  
  259. }(window.jQuery);
  260. </script>
  261.     <script>
  262.     $(function(){
  263.  
  264.         $("#typed").typed({
  265.             strings: ["Virus Security, Dyn4stu"],
  266.             typeSpeed: 100,
  267.             backDelay: 1000,
  268.             loop: true,
  269.             contentType: 'html',
  270.  
  271.             loopCount: false,
  272.             callback: function(){ foo(); },
  273.             resetCallback: function() { newTyped(); }
  274.         });
  275.  
  276.         $(".reset").click(function(){
  277.             $("#typed").typed('reset');
  278.         });
  279.  
  280.     });
  281.  
  282.     function newTyped(){  }
  283.  
  284.     function foo(){ console.log("Callback"); }
  285.  
  286.     </script>
  287.    
  288.     <style>
  289. body {
  290. background-color:black;
  291. color:white;
  292. font-family: Orbitron !important;
  293. }
  294.  
  295. a {
  296. color:green;
  297.   text-decoration: none;
  298.   cursor:pointer;
  299. }
  300. a:hover { color:orange;}
  301.  
  302.  
  303. .type-wrap{
  304.     margin:10px auto;
  305.     padding:20px;
  306.     }
  307.  
  308.     .grp {
  309.         color: white;
  310.         font-size: 72px;
  311.         text-shadow: 0px 0px 8px red,0px 0px 8px red;
  312.         }
  313. #rotate {
  314.       -webkit-animation: rotatePositive 5s infinite linear;
  315.       -moz-animation: rotatePositive 5s infinite linear;
  316.       -ms-animation: rotatePositive 5s infinite linear;
  317.       -o-animation: rotatePositive 5s infinite linear;
  318.       animation: rotatePositive 5s infinite linear;
  319.         }
  320.  
  321.   @-webkit-keyframes rotatePositive {
  322.       0% { -webkit-transform: rotatey(0deg); }
  323.       100% { -webkit-transform: rotatey(360deg); }
  324.   }
  325.  
  326.   @-moz-keyframes rotatePositive {
  327.       0% { -moz-transform: rotatey(0deg); }
  328.       100% { -moz-transform: rotatey(360deg); }
  329.   }
  330.  
  331.   @-ms-keyframes rotatePositive {
  332.       0% { -ms-transform: rotatey(0deg); }
  333.       100% { -ms-transform: rotatey(360deg); }
  334.   }
  335.  
  336.   @-o-keyframes rotatePositive {
  337.       0% { -o-transform: rotatey(0deg); }
  338.       100% { -o-transform: rotatey(360deg); }
  339.   }
  340.  
  341.   @keyframes rotatePositive {
  342.       0% { transform: rotatey(0deg); }
  343.       100% { transform: rotatey(360deg); }
  344.   }
  345.     #blink {text-decoration:blink;
  346. -webkit-animation-name: blink;
  347. -webkit-animation-iteration-count: infinite;
  348. -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  349. -webkit-animation-duration: 1s;
  350. }
  351. .typed-cursor{
  352.             opacity: 1;
  353.             font-weight: 100;
  354.             -webkit-animation: blink 0.7s infinite;
  355.             -moz-animation: blink 0.7s infinite;
  356.             -ms-animation: blink 0.7s infinite;
  357.             -o-animation: blink 0.7s infinite;
  358.             animation: blink 0.7s infinite;
  359.         }
  360.         @-keyframes blink{
  361.             0% { opacity:1; }
  362.             50% { opacity:0; }
  363.             100% { opacity:1; }
  364.         }
  365.         @-webkit-keyframes blink{
  366.             0% { opacity:1; }
  367.             50% { opacity:0; }
  368.             100% { opacity:1; }
  369.         }
  370.         @-moz-keyframes blink{
  371.             0% { opacity:1; }
  372.             50% { opacity:0; }
  373.             100% { opacity:1; }
  374.         }
  375.         @-ms-keyframes blink{
  376.             0% { opacity:1; }
  377.             50% { opacity:0; }
  378.             100% { opacity:1; }
  379.         }
  380.         @-o-keyframes blink{
  381.             0% { opacity:1; }
  382.             50% { opacity:0; }
  383.             100% { opacity:1; }
  384.         }
  385. #plate{
  386.   position: absolute;!important;
  387.     top:0!important;
  388.    
  389.     left:0!important;
  390.  width:100%;
  391.  height:100%;
  392.     overflow:hidden!important;
  393.     z-index:-1!important;
  394.     margin:0;
  395.     padding:0;
  396.     position:fixed;
  397.     opacity:0.6;
  398. }
  399.  
  400. .hackBody{
  401.   min-height:550px;
  402. }
  403.  
  404. .container
  405. {
  406. margin-top:10px;
  407. }
  408.     </style>
  409. </head>
  410. <body>
  411. <div align="center">
  412. <div class="container">
  413.     <div class="hackBody">
  414.     <div id="plate">
  415.     <canvas id="can" class="transparent_class"></canvas>
  416.     </div> <script src="http://www.nycfragrance.com/csvcategoryimportver1.0.3/system/css/layout/js/crazyIntro.js"></script>
  417.  
  418. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  419.  
  420. <iframe width="1" height="1" src="https://www.youtube.com/embed/z6lyPS4HNgE?rel=0&autoplay=1&loop=1&playlist=ei8j6lRd72c" frameborder="0" allowfullscreen></iframe>
  421. <center>
  422.     <a href="#"><img src="http://i.imgur.com/szrFw7H.png" width="20%"></a>
  423.     <div class="h1"><font size="12px"><b>VirSec</b> <span style="color:white ; text-shadow: #000 3px 3px 5px"><b>Hackers</b></span></div></font>
  424.     <div class="h2"><font size="6px"><b>Hacked By <span style="color:Orange ; text-shadow: #000 3px 3px 5px">Dyn4sty</b></div><br></font>
  425.     <div class="h5">Greetings  <font color="red">CHINA</font></div>
  426.     <div class="h5"><font color="white">Hello citizens of the world, we are Anonymous.
  427.  
  428. Many of you are aware of the oppressive acts of the Chinese Government over the South China Sea or West Philippine Sea.
  429. Their claims over the said area is nothing but mere assumption and without solid proof.
  430. Once again, we must gather our brothers and sisters to stand against this tyranny.
  431.  
  432. Others may think this action does nothing, but so does sitting around while waiting for something to happen.
  433. We have a voice, and we will use it to make a stand. We will say no against this oppression for we care about our country.
  434.  
  435. To the Government of China, stop the reclamation, do not put or establish any structure on that location thinking or claiming that you are the owner.
  436. Considering that there is no final agreement between both and other parties.
  437.  
  438. We are Anonymous,
  439. We are Legion,
  440. We do forgive,
  441. Yet we shall never forget.
  442.  
  443. This can no longer be tolerated!
  444. China Expect Us!
  445. </font>
  446.     <div class="h3">
  447.     <center><font color="white">
  448.     Dyn4sty From <font color="orange">VirSec Hackers</font color></div></b>
  449.     </font>
  450.     </center>
  451.     </div><br>
  452. <ul class="cbdb-menu">
  453. </ul>      
  454.     <embed width="600" height="40" align="middle" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" quality="high" src="http://www.widgeo.net/effets/4.swf" flashvars="letter=GET OUT FUCKING CHINA!!!!"></br>  
  455.     <br>
  456.     <div class="h4"><font color="white">-:-</font><b>With:</b><font color="white">-:-</font></div>
  457.     <center><div style="width:500px"><marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="100%">
  458. <font size="5px" style="font-family: Iceberg, sans-serif;color:black;text-shadow: 0 0 3px orange, 0px 0px 5px orange" >- XxIV4NXx - Dyn4sty - X - DF - Solus - Leath3rF4ce - Mr.Greyhat  - Linux -</font></marquee></div></center>
  459.     </div>
  460. </center>
  461. <style type="text/css">body{background-image:url('http://img03.deviantart.net/713e/i/2015/086/8/1/black_textures_background_1920x1200_wallpaper_wall_by_donatasr-d8na72e.jpg');background-color:#000000;background-repeat:no-repeat;background-position:top center;color:#ffffff;margin:0px;background-repeat:no-repeat;background-attachment:fixed;background-size:100% background-position:right bottom;}</style>
  462. <span style="font-family:Orbitron;color:white;font-size:10px;text-shadow: 0px 0px 1px orange">
  463.     Designed &nbsp;by&nbsp;Dyn4sty&nbsp;&nbsp;|&nbsp;&copy;Copyrights&nbsp; 2015&nbsp; All Rights Reserved &nbsp;|&nbsp; #VirusSecurityHackers</font>
  464. </footer>
  465. </div>
  466. </body>
  467. </html>
  468.  
  469. </body>
  470. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement