Advertisement
beginnerghost

BeginnerGhost deface

May 28th, 2019
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.72 KB | None | 0 0
  1. <html>
  2.  
  3. <title>Hacked By BeginnerGhost</title>
  4. <style type="text/css">
  5. body{
  6. background-image: url('https://i.imgur.com/i1skn5k.gif');
  7. }
  8. </style>
  9.  
  10. <style type="text/css">
  11.  
  12. *,html,body,div,p,h2{padding: 0px;margin: 0px;}body{background-color: #000000;}#container{margin: 0 auto;width: 980px;padding-top: 40px;}#content-container{float: left;width: 980px;}#content{clear: left;float: left;width: 581px;padding: 20px 0 20px 0;margin: 0 0 0 30px;display: inline;color: #333;}#content h2 {font-family: Cambria;font-size: 170px;}#aside{float: right;width: 348px;padding: 0px;display: inline;background-image: url('');height: 876px;}.hacker{float: right;font-family: Cambria;font-size: 30px;font-weight: bold;}.notes{padding-top: 90px;line-height: 1.3em;font-weight: bold;font-size: 16px;font-family: "Courier New";}.contact{padding-top : 30px;font-size: 18px;font-family: "Courier New", Courier, monospace;font-weight: bold;color: #800000;}#music{padding: 80px 80px 0px 0px;float: right;clear: right;}</style>
  13.  
  14. <meta name="keywords" content="Hacked By BeginnerGhost">
  15. <meta name="description" content="BeginnerGhost">
  16.  
  17. <script type="text/javascript">/*<![CDATA[*/
  18.  
  19. TypingText = function(element, interval, cursor, finishedCallback) {
  20.  
  21. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  22.  
  23. this.running = true;
  24.  
  25. return;
  26.  
  27. }
  28.  
  29. this.element = element;
  30.  
  31. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  32.  
  33. this.interval = (typeof interval == "undefined" ? 100 : interval);
  34.  
  35. this.origText = this.element.innerHTML;
  36.  
  37. this.unparsedOrigText = this.origText;
  38.  
  39. this.cursor = (cursor ? cursor : "");
  40.  
  41. this.currentText = "";
  42.  
  43. this.currentChar = 0;
  44.  
  45. this.element.typingText = this;
  46.  
  47. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  48.  
  49. TypingText.all.push(this);
  50.  
  51. this.running = false;
  52.  
  53. this.inTag = false;
  54.  
  55. this.tagBuffer = "";
  56.  
  57. this.inHTMLEntity = false;
  58.  
  59. this.HTMLEntityBuffer = "";
  60.  
  61. }
  62.  
  63. TypingText.all = new Array();
  64.  
  65. TypingText.currentIndex = 0;
  66.  
  67. TypingText.runAll = function() {
  68.  
  69. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  70.  
  71. }
  72.  
  73. TypingText.prototype.run = function() {
  74.  
  75. if(this.running) return;
  76.  
  77. if(typeof this.origText == "undefined") {
  78.  
  79. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  80.  
  81. return;
  82.  
  83. }
  84.  
  85. if(this.currentText == "") this.element.innerHTML = "";
  86.  
  87. if(this.currentChar < this.origText.length) {
  88.  
  89. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  90.  
  91. this.tagBuffer = "<";
  92.  
  93. this.inTag = true;
  94.  
  95. this.currentChar++;
  96.  
  97. this.run();
  98.  
  99. return;
  100.  
  101. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  102.  
  103. this.tagBuffer += ">";
  104.  
  105. this.inTag = false;
  106.  
  107. this.currentText += this.tagBuffer;
  108.  
  109. this.currentChar++;
  110.  
  111. this.run();
  112.  
  113. return;
  114.  
  115. } else if(this.inTag) {
  116.  
  117. this.tagBuffer += this.origText.charAt(this.currentChar);
  118.  
  119. this.currentChar++;
  120.  
  121. this.run();
  122.  
  123. return;
  124.  
  125. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  126.  
  127. this.HTMLEntityBuffer = "&";
  128.  
  129. this.inHTMLEntity = true;
  130.  
  131. this.currentChar++;
  132.  
  133. this.run();
  134.  
  135. return;
  136.  
  137. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  138.  
  139. this.HTMLEntityBuffer += ";";
  140.  
  141. this.inHTMLEntity = false;
  142.  
  143. this.currentText += this.HTMLEntityBuffer;
  144.  
  145. this.currentChar++;
  146.  
  147. this.run();
  148.  
  149. return;
  150.  
  151. } else if(this.inHTMLEntity) {
  152.  
  153. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  154.  
  155. this.currentChar++;
  156.  
  157. this.run();
  158.  
  159. return;
  160.  
  161. } else {
  162.  
  163. this.currentText += this.origText.charAt(this.currentChar);
  164.  
  165. }
  166.  
  167. this.element.innerHTML = this.currentText;
  168.  
  169. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  170.  
  171. this.currentChar++;
  172.  
  173. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  174.  
  175. } else {
  176.  
  177. this.currentText = "";
  178.  
  179. this.currentChar = 0;
  180.  
  181. this.running = false;
  182.  
  183. this.finishedCallback();
  184.  
  185. }
  186.  
  187. }
  188.  
  189.  
  190.  
  191. /*]]>*/</script></head>
  192.  
  193. <iframe src="https://vocaroo.com/delete/s1XPVmvVCXfd/40b09b51d2152a03&autoplay=1" height="0" width="0">
  194. <p>Beginner Ghost</p>
  195. </iframe>
  196.  
  197.  
  198.  
  199. <body>
  200.  
  201. <div id="container">
  202.  
  203. <div id="content-container">
  204.  
  205. <div id="content">
  206.  
  207.  
  208. <center><img src="https://i.ibb.co/12rF7D3/images.jpg"></center>
  209. <h2>H4CK3D</h2>
  210. <p class="hacker">By <font size="6" color="darkred">BeginnerGhost</font></p>
  211. <br><br>
  212. <center>
  213. <br><br>
  214.  
  215.  
  216. </center>
  217. <p id="message" class="notes">
  218.  
  219.  
  220. H3LL0 ADMIN............ <br>
  221.  
  222. <br>
  223.  
  224. You have been Hacked! <br> because your security is very low...........<br>
  225. BeginnerGhost Was Here!!!<br></p>
  226.  
  227.  
  228. <script type="text/javascript">/*<![CDATA[*/
  229.  
  230. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " + ar[i.length % ar.length]; });
  231.  
  232.  
  233.  
  234. //Type out examples:
  235.  
  236. TypingText.runAll();
  237.  
  238. /*]]>*/</script>
  239.  
  240. </div>
  241.  
  242. <div id="aside">
  243.  
  244.  
  245.  
  246. </div>
  247.  
  248.  
  249.  
  250. <div id="music">
  251.  
  252. &nbsp;</div>
  253.  
  254. </div>
  255.  
  256. <p>&nbsp;</p>
  257.  
  258. </div>
  259.  
  260. <body bgcolor="black" onclick=aa();>
  261. <table width=100% >
  262. <tr><td width=30% ></td>
  263. <td width=60%><marquee direction=right scrollamount="10"><img src="https://i.imgur.com/yA2x7uD.gif" width=100px style="margin-top:100px" ></marquee></td>
  264. <td></td>
  265. </tr></table><br>
  266.  
  267. <table style="border:1px;border-color:blue;border-style:double;padding-left:2px;padding-right:2px;bottom:2px;height:25px;width:100%;">
  268. <tbody><tr>
  269. <td style="border: 1px;width:10%; background: transparent;box-shadow: 0px 0px 8px green;
  270. bottom: 2px; border-color:green; border-style: dotted" ;="">
  271. <center>
  272. <font style="color:skyblue;direction:center;font-family:electrolize;font-size:20px;text-shadow:0px 0px 5px Sms;"> Greetz To</font></center>
  273. </td>
  274. <td><marquee class="z" style="color:green; font-size:20px;font-family:electrolize;text-shadow: 0px 0px 5px aqua; direction:left;" scrollamount="5px">All Myanmar Hacking Team And You!! <br>
  275. </font></marquee>
  276. </td></tr>
  277. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement