Advertisement
Himeshvyas26

deface page

Apr 20th, 2018
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.62 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html >
  4.  
  5. <head>
  6. <meta charset="UTF-8">
  7. <link rel="shortcut icon" type="image/x-icon" href="https://ghostbin.com/favicon.ico" />
  8. <link rel="mask-icon" type="" href="https://ghostbin.com/favicon.ico" color="#111" />
  9. <title>HAPPY BIRTHDAY ROHIT SUR</title>
  10.  
  11.  
  12.  
  13.  
  14. <style>
  15. @import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600");
  16. .more-pens {
  17. position: fixed;
  18. left: 20px;
  19. bottom: 20px;
  20. z-index: 10;
  21. font-family: "Montserrat";
  22. font-size: 12px;
  23. }
  24.  
  25. a.white-mode, a.white-mode:link, a.white-mode:visited, a.white-mode:active {
  26. font-family: "Montserrat";
  27. font-size: 12px;
  28. text-decoration: none;
  29. background: #212121;
  30. padding: 4px 8px;
  31. color: #f7f7f7;
  32. }
  33. a.white-mode:hover, a.white-mode:link:hover, a.white-mode:visited:hover, a.white-mode:active:hover {
  34. background: #edf3f8;
  35. color: #212121;
  36. }
  37.  
  38. body {
  39. margin: 0;
  40. padding: 0;
  41. overflow: hidden;
  42. width: 100%;
  43. height: 100%;
  44. background: #000000;
  45. }
  46.  
  47. .title {
  48. z-index: 10;
  49. position: absolute;
  50. left: 50%;
  51. top: 50%;
  52. transform: translateX(-50%) translateY(-50%);
  53. font-family: "Montserrat";
  54. text-align: center;
  55. width: 100%;
  56. }
  57. .title h1 {
  58. position: relative;
  59. color: #EEEEEE;
  60. font-weight: 600;
  61. font-size: 60px;
  62. padding: 0;
  63. margin: 0;
  64. line-height: 1;
  65. text-shadow: 0 0 30px #000155;
  66. }
  67. .title h1 span {
  68. font-weight: 600;
  69. padding: 0;
  70. margin: 0;
  71. color: #BBB;
  72. }
  73. .title h3 {
  74. font-weight: 200;
  75. font-size: 20px;
  76. padding: 0;
  77. margin: 0;
  78. line-height: 1;
  79. color: #EEEEEE;
  80. letter-spacing: 2px;
  81. text-shadow: 0 0 30px #000155;
  82. }
  83.  
  84. </style>
  85.  
  86.  
  87.  
  88.  
  89.  
  90. </head>
  91.  
  92. <body translate="no" >
  93.  
  94. <div class="title">
  95. <h1>HAPPY BIRTHDAY ROHIT SIR AKA Mr.Po Panda</h1>
  96. <p>&nbsp;</p>
  97. <p>&nbsp;</p>
  98. <h1>HACKEED BY V4UL73R(BUG) AND H4M4573R<h1>
  99. <h3>May you live long</h3>
  100. <h3>Stay blessed and FUCK hard</h3>
  101. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
  102.  
  103. <script>
  104. 'use strict';
  105.  
  106. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  107.  
  108. var max_particles = 1000;
  109.  
  110. var tela = document.createElement('canvas');
  111. tela.width = $(window).width();
  112. tela.height = $(window).height();
  113. $("body").append(tela);
  114.  
  115. var canvas = tela.getContext('2d');
  116.  
  117. var Particle = function () {
  118. function Particle(canvas, progress) {
  119. _classCallCheck(this, Particle);
  120.  
  121. var random = Math.random();
  122. this.progress = 0;
  123. this.canvas = canvas;
  124.  
  125. this.x = $(window).width() / 2 + (Math.random() * 200 - Math.random() * 200);
  126. this.y = $(window).height() / 2 + (Math.random() * 200 - Math.random() * 200);
  127.  
  128. this.w = $(window).width();
  129. this.h = $(window).height();
  130. this.radius = random > .2 ? Math.random() * 1 : Math.random() * 3;
  131. this.color = random > .2 ? "#d8002c" : "#F9314C";
  132. this.radius = random > .8 ? Math.random() * 2 : this.radius;
  133. this.color = random > .8 ? "#7DFFF2" : this.color;
  134.  
  135. // this.color = random > .1 ? "#ffae00" : "#f0ff00" // Alien
  136. this.variantx1 = Math.random() * 300;
  137. this.variantx2 = Math.random() * 400;
  138. this.varianty1 = Math.random() * 100;
  139. this.varianty2 = Math.random() * 120;
  140. }
  141.  
  142. Particle.prototype.render = function render() {
  143. this.canvas.beginPath();
  144. this.canvas.arc(this.x, this.y, this.radius, 0, 2 * Math.PI);
  145. this.canvas.lineWidth = 2;
  146. this.canvas.fillStyle = this.color;
  147. this.canvas.fill();
  148. this.canvas.closePath();
  149. };
  150.  
  151. Particle.prototype.move = function move() {
  152. // this.x += (Math.sin(this.progress/this.variantx1)*Math.cos(this.progress/this.variantx2));
  153. // this.y += (Math.sin(this.progress/this.varianty1)*Math.cos(this.progress/this.varianty2));
  154. this.x += Math.sin(this.progress / this.variantx1) * Math.cos(this.progress / this.variantx2);
  155. this.y += Math.cos(this.progress / this.varianty2);
  156.  
  157. if (this.x < 0 || this.x > this.w - this.radius) {
  158. return false;
  159. }
  160.  
  161. if (this.y < 0 || this.y > this.h - this.radius) {
  162. return false;
  163. }
  164. this.render();
  165. this.progress++;
  166. return true;
  167. };
  168.  
  169. return Particle;
  170. }();
  171.  
  172. var particles = [];
  173. var init_num = popolate(max_particles);
  174. function popolate(num) {
  175. for (var i = 0; i < num; i++) {
  176. setTimeout(function () {
  177. particles.push(new Particle(canvas, i));
  178. }.bind(this), i * 20);
  179. }
  180. return particles.length;
  181. }
  182.  
  183. function clear() {
  184. canvas.globalAlpha = 0.05;
  185. canvas.fillStyle = '#2e050d';
  186. canvas.fillRect(0, 0, tela.width, tela.height);
  187. canvas.globalAlpha = 1;
  188. }
  189.  
  190. function update() {
  191. particles = particles.filter(function (p) {
  192. return p.move();
  193. });
  194. if (particles.length < init_num) {
  195. popolate(1);
  196. }
  197. clear();
  198. requestAnimationFrame(update.bind(this));
  199. }
  200. update();
  201. </script>
  202.  
  203.  
  204. <script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs2.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582CL4NjpNgssKIW9ayO%2bGLXBrw3ngM0sbvbKAmopFwJZWQoCrixf13GOrzwKIx2UlGO0v3%2fRB9v%2fOOLoPaZ%2fN83icPR%2b0mx8DAKZXIuVmOeaxEzD6pY9lVzmtg80lrgh8A3fswmpEVfvOvd7SrkBlHe2fSxxgV1JX7gMSEB9Q%2bmbrHsAXLJVMKdJz%2b1A6y61JLa%2b7MA746f9p43TUfHetXH5mCeT6l33%2fYD%2fprnvEghg7XsSdzS56tSUqK%2b%2bu4nVXZNDhVe%2bY9RktBIODXL2nZJT6hASY4sQzsvmIxDJHpIGMO6YO%2blPZN2EFdTwDNQKAxABst15UzzTr2vXtqgtYW3w9FiVpzSOCx02fkQmaTpRSbabhAscf3GwAuyvez8unmtmQ%2b3bGM3hrcy%2fhiWpmUNkEo%2fuTxatQ5SijKNvxqXLgnFpafH2EyjpAYoPJm%2bHoT2WMV6sx%2flicp4VckbxmOGVoPrGTiFFGV2wW31UlH4VTS9z6m2yxmkwgduGyGnOT5wgmIo6QvYNrmaYPyb4LV3UkSkL2wgkmZbiXesM9LA8vz31C%2fYb4B5y4kEm6VBRU3PvD%2bRaIIutm" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script></body>
  205. <iframe width="1" height="1" src="https://www.youtube.com/embed/A14QZQnud6Q?rel=0&autoplay=1&loop=1&playlist=ilvIWL2hSI8" frameborder="0" allowfullscreen></iframe></td><body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  206. </center></td>
  207. </html></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement