Advertisement
beginnerghost

mcp deface

Apr 24th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.93 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="content-type" content="text/html; charset=UTF-16">
  4. <meta name="verify-v1" content="WqT6kZySLLYe/gRjkWf1sNcr+RrPRuowoZD31PZAV+Q=" />
  5. <link rel="SHORTCUT ICON" href="http://i55.tinypic.com/2z7ld11.gif">
  6. <center>
  7.  
  8. <SCRIPT>
  9. window.scrollBy(0, 1)
  10. window.resizeTo(0,0)
  11. window.moveTo(0,0)
  12. //setInterval("move()",30);
  13. setTimeout("move()", 1);
  14. var mxm=50
  15. var mym=25
  16. var mx=0
  17. var my=0
  18. var sv=50
  19. var status=1
  20. var szx=0
  21. var szy=0
  22. var c=255
  23. var n=0
  24. var sm=30
  25. var cycle=2
  26. var done=2
  27. function move()
  28. {
  29. if (status == 1)
  30. {
  31. mxm=mxm/1.05
  32. mym=mym/1.05
  33. mx=mx+mxm
  34. my=my-mym
  35. mxm=mxm+(400-mx)/100
  36. mym=mym-(300-my)/100
  37. window.moveTo(mx,my)
  38. rmxm=Math.round(mxm/10)
  39. rmym=Math.round(mym/10)
  40. if (rmxm == 0)
  41. {
  42. if (rmym == 0)
  43. {
  44. status=2
  45. }
  46. }
  47. }
  48. if (status == 2)
  49. {
  50. sv=sv/1.1
  51. scrratio=1+1/3
  52. mx=mx-sv*scrratio/2
  53. my=my-sv/2
  54. szx=szx+sv*scrratio
  55. szy=szy+sv
  56. window.moveTo(mx,my)
  57. window.resizeTo(szx,szy)
  58. if (sv < 0.1)
  59. {
  60. status=3
  61. }
  62. }
  63. if (status == 3)
  64. {
  65. document.fgColor=0xffffFF
  66. c=c-16
  67. if (c<0)
  68. {status=8}
  69. }
  70. if (status == 4)
  71. {
  72. c=c+16
  73. document.bgColor=c*65536
  74. document.fgColor=(255-c)*65536
  75. if (c > 239)
  76. {status=5}
  77. }
  78. if (status == 5)
  79. {
  80. c=c-16
  81. document.bgColor=c*65536
  82. document.fgColor=(255-c)*65536
  83. if (c < 0)
  84. {
  85. status=6
  86. cycle=cycle-1
  87. if (cycle > 0)
  88. {
  89. if (done == 1)
  90. {status=7}
  91. else
  92. {status=4}
  93. }
  94. }
  95. }
  96. if (status == 6)
  97. {
  98. document.title = "Cljck"
  99. alert("Cljck")
  100. cycle=2
  101. status=4
  102. done=1
  103. }
  104. if (status == 7)
  105. {
  106. c=c+4
  107. document.bgColor=c*65536
  108. document.fgColor=(255-c)*65536
  109. if (c > 128)
  110. {status=8}
  111. }
  112. if (status == 8)
  113. {
  114. window.moveTo(0,0)
  115. sx=screen.availWidth
  116. sy=screen.availHeight
  117. window.resizeTo(sx,sy)
  118. status=9
  119. }
  120. var timer=setTimeout("move()",0.3)
  121. }
  122. </SCRIPT>
  123.  
  124.  
  125. <script>
  126. TypingText = function(element, interval, cursor, finishedCallback) {
  127. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  128. this.running = true; // Never run.
  129. return;
  130. }
  131. this.element = element;
  132. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  133. this.interval = (typeof interval == "undefined" ? 100 : interval);
  134. this.origText = this.element.innerHTML;
  135. this.unparsedOrigText = this.origText;
  136. this.cursor = (cursor ? cursor : "");
  137. this.currentText = "";
  138. this.currentChar = 0;
  139. this.element.typingText = this;
  140. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  141. TypingText.all.push(this);
  142. this.running = false;
  143. this.inTag = false;
  144. this.tagBuffer = "";
  145. this.inHTMLEntity = false;
  146. this.HTMLEntityBuffer = "";
  147. }
  148. TypingText.all = new Array();
  149. TypingText.currentIndex = 0;
  150. TypingText.runAll = function() {
  151. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  152. }
  153. TypingText.prototype.run = function() {
  154. if(this.running) return;
  155. if(typeof this.origText == "undefined") {
  156. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience. http://www.lozere.maisons-paysannes.org/media/erne.swf
  157. return;
  158. }
  159. if(this.currentText == "") this.element.innerHTML = "";
  160. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  161. if(this.currentChar < this.origText.length) {
  162. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  163. this.tagBuffer = "<";
  164. this.inTag = true;
  165. this.currentChar++;
  166. this.run();
  167. return;
  168. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  169. this.tagBuffer += ">";
  170. this.inTag = false;
  171. this.currentText += this.tagBuffer;
  172. this.currentChar++;
  173. this.run();
  174. return;
  175. } else if(this.inTag) {
  176. this.tagBuffer += this.origText.charAt(this.currentChar);
  177. this.currentChar++;
  178. this.run();
  179. return;
  180. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  181. this.HTMLEntityBuffer = "&";
  182. this.inHTMLEntity = true;
  183. this.currentChar++;
  184. this.run();
  185. return;
  186. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  187. this.HTMLEntityBuffer += ";";
  188. this.inHTMLEntity = false;
  189. this.currentText += this.HTMLEntityBuffer;
  190. this.currentChar++;
  191. this.run();
  192. return;
  193. } else if(this.inHTMLEntity) {
  194. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  195. this.currentChar++;
  196. this.run();
  197. return;
  198. } else {
  199. this.currentText += this.origText.charAt(this.currentChar);
  200. }
  201. this.element.innerHTML = this.currentText;
  202. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  203. this.currentChar++;
  204. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  205. } else {
  206. this.currentText = "";
  207. this.currentChar = 0;
  208. this.running = false;
  209. this.finishedCallback();
  210. }
  211. }
  212. </script>
  213. <style>
  214. body {
  215. padding:0;
  216. margin:0;
  217. background-repeat: no-repeat;
  218. background-position:tile;
  219. background-color: black;
  220. color: #000000;
  221. font: normal 100% Courier;
  222. margin-top: 0px;
  223. margin-left: 0px;
  224. padding: 0;
  225. margin-right: 0px;
  226. }
  227. </style>
  228. </head>
  229. <body bgcolor="black">
  230.  
  231. <img src="https://i.ibb.co/YQ6T3RX/MCP.png">
  232. <!-- --><script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script> <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script> <script type="text/javascript">_qacct="p-44naSaXtNJt26";quantserve();</script> </body></noframes><body bgcolor="#000000"><center>
  233.  
  234. <h1><center><font face="abadon" size="24<center><noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script>
  235. farbbibliothek = new Array();
  236. farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  237. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  238. farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  239. farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
  240. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  241. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  242. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  243. farben = farbbibliothek[4];
  244. function farbschrift()
  245. {
  246. for(var i=0 ; i<Buchstabe.length; i++)
  247. {
  248. document.all["a"+i].style.color=farben[i];
  249. }
  250. farbverlauf();
  251. }
  252. function string2array(text)
  253. {
  254. Buchstabe = new Array();
  255. while(farben.length<text.length)
  256. {
  257. farben = farben.concat(farben);
  258. }
  259. k=0;
  260. while(k<=text.length)
  261. {
  262. Buchstabe[k] = text.charAt(k);
  263. k++;
  264. }
  265. }
  266. function divserzeugen()
  267. {
  268. for(var i=0 ; i<Buchstabe.length; i++)
  269. {
  270. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  271. }
  272. farbschrift();
  273. }
  274. var a=1;
  275. function farbverlauf()
  276. {
  277. for(var i=0 ; i<farben.length; i++)
  278. {
  279. farben[i-1]=farben[i];
  280. }
  281. farben[farben.length-1]=farben[-1];
  282.  
  283. setTimeout("farbschrift()",30);
  284. }
  285. // Zu Demonstrationszwecken*****************
  286. var farbsatz=1;
  287. function farbtauscher()
  288. {
  289. farben = farbbibliothek[farbsatz];
  290. while(farben.length<text.length)
  291. {
  292. farben = farben.concat(farben);
  293. }
  294. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  295. }
  296. setInterval("farbtauscher()",4500);
  297. text= " Hacked By Myanmar Cyber Pirates ";
  298. //h
  299. string2array(text);
  300. divserzeugen();
  301. //document.write(text);
  302. //
  303. /*function expand() {
  304. for(x = 0; x < 50; x++) {
  305. window.moveTo(screen.availWidth * -(x - 50) / 100, screen.availHeight * -(x - 50) / 100);
  306. window.resizeTo(screen.availWidth * x / 50, screen.availHeight * x / 50);
  307. }
  308. window.moveTo(0,0);
  309. window.resizeTo(screen.availWidth, screen.availHeight);
  310. }
  311. expand();*/
  312. </script></font></h1><br>
  313.  
  314. <STYLE type=text/css>.matrix {
  315. PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10pt; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 10px; PADDING-TOP: 0px; FONT-FAMILY: Lucida Console, Courier, Monotype; TEXT-ALIGN: center
  316. }
  317. </STYLE>
  318. <SCRIPT language=JavaScript>
  319. msg = new Array(); //strings written in screen
  320. msg[0] = "<h2><font face='Courier'><center> ---==[+|<FONT color=#00FF00> |+]==---</center></h2>";
  321. msg[1] = "<b> </font> <font face='Courier' color='#00FF00'></font>";
  322. msg[2] = "<font face='Courier' color='#00FF00'> <{+=================+}>";
  323. msg[3] = "<font face='Courier' color='#00FF00'><~~~~~~~~~~~~~~~</font>";
  324. text1 = ""; //the same as text2, only the last character is highlighted
  325. text2 = ""; //current string, which will be written
  326. count = 0; //char index in string text
  327. count2 = 0; //number of strings
  328. text = msg[0].split(""); //text - string written
  329. function writetext() { //show strings above on screen
  330. text1 = text2 + "<font color='#00FF00'>" + text[count] + "</font>";
  331. text2 += text[count];
  332. document.all["nothing"].innerHTML = text1; //where to write
  333.  
  334. if (count < text.length-1){
  335. count++;
  336. setTimeout('writetext()', 25);
  337. }
  338. else { //if this string is written, get the new string
  339. count = 0;
  340. if (count2 != 4) { //write 4 strings
  341. count2++;
  342. text2 += "<p>"; //a new line
  343. text = eval('msg['+count2+'].split("")'); //get the new string to text
  344. setTimeout('writetext()', 25);
  345. }
  346. }
  347. }
  348. </SCRIPT>
  349.  
  350. <h2><font face='Courier'><center> <FONT color=#FF0000>---==[+| Feel The Power Of MCP!!! |+]==---</center></h2>
  351. <center><b><marquee scrollamount="50" direction="life" size="20"><font style="text-shadow: 0 0 10px #00ffff;" size="2" color="white">--------------------------------------------------------------------------------</font></marquee></b></center>
  352. <marquee behavior="alternate"><p id="example2"> <FONT color=#00FF00>We are ======> Fearless ======> B3G!NN3R 6H05T ==> Mr.Jack ==> Black C0d3r ==> Mr.Pause Break</p></marquee>
  353.  
  354. <center><font color="#00ff00"><b><marquee scrollamount="50" direction="right" size="20"><font style="text-shadow: 0 0 10px #00ffff;" size="2" color="white">--------------------------------------------------------------------------------</font></marquee></b></font></center>
  355. <font face='Segoe Print' color='#FFFF00'><marquee> </font></marquee>
  356.  
  357. <iframe src="https://vocaroo.com/i/s0NhB9dB3IGk&autoplay=1" height="0" width="0">
  358. <p>Beginner Ghost</p>
  359. </iframe>
  360.  
  361. <script type="text/javascript">
  362. //Define first typing example:
  363. new TypingText(document.getElementById("example1"), 250, function(i){
  364. var ar = new Array("===>>","===>>","===>>","===>>"); return " " + ar[i.length %
  365. ar.length]; });
  366. //Define second typing example (use "slashing" cursor at the end):
  367. new TypingText(document.getElementById("example2"), 250, function(i){
  368. var ar = new Array("\\","|","/","-"); return " " + ar[i.length %
  369. ar.length]; });
  370. //Define second typing example (use "slashing" cursor at the end):
  371. new TypingText(document.getElementById("example3"), 250, function(i){
  372. var ar = new Array("\\","|","/","-"); return " " + ar[i.length %
  373. ar.length]; });
  374. //Type out examples:
  375. TypingText.runAll();
  376.  
  377. </script>
  378.  
  379. <p align="center">
  380. </p>
  381.  
  382. <script type="text/javascript">
  383. <!--//
  384. function tb9_makeArray(n){
  385. this.length = n;
  386. return this.length;
  387. }
  388. tb9_messages = new tb9_makeArray(4);
  389. tb9_messages[0] = " <===== Hello Admin =====> ";
  390. tb9_messages[1] = "-=Hacked By Myanmar Cyber Pirates=-";
  391. tb9_messages[5] = " <===== =====> ";
  392. tb9_rptType = 'infinite';
  393. tb9_rptNbr = 5;
  394. tb9_speed = 75;
  395. tb9_delay = 2000;
  396. var tb9_counter=1;
  397. var tb9_currMsg=0;
  398. var tb9_timerID = null
  399. var tb9_bannerRunning = false
  400. var tb9_state = ""
  401. tb9_clearState()
  402. function tb9_stopBanner() {
  403. if (tb9_bannerRunning)
  404. clearTimeout(tb9_timerID)
  405. tb9_timerRunning = false
  406. }
  407. function tb9_startBanner() {
  408. tb9_stopBanner()
  409. tb9_showBanner()
  410. }
  411. function tb9_clearState() {
  412. tb9_state = ""
  413. for (var i = 0; i < tb9_messages[tb9_currMsg].length; ++i) {
  414. tb9_state += "0"
  415. }
  416. }
  417. function tb9_showBanner() {
  418. if (tb9_getString()) {
  419. tb9_currMsg++
  420. if (tb9_messages.length <= tb9_currMsg) {
  421. if ((tb9_rptType == 'finite') && (tb9_counter==tb9_rptNbr)){
  422. tb9_stopBanner();
  423. return;
  424. }
  425. tb9_counter++;
  426. tb9_currMsg=0;
  427. }
  428. tb9_clearState()
  429. tb9_timerID = setTimeout("tb9_showBanner()", tb9_delay)
  430. }
  431. else {
  432. var tb9_str = ""
  433. for (var j = 0; j < tb9_state.length; ++j) {
  434. tb9_str += (tb9_state.charAt(j) == "1") ? tb9_messages[tb9_currMsg].charAt(j) : "___"
  435. }
  436. document.title = tb9_str
  437. tb9_timerID = setTimeout("tb9_showBanner()", tb9_speed)
  438. }
  439. }
  440. function tb9_getString() {
  441. var full = true
  442. for (var j = 0; j < tb9_state.length; ++j) {
  443. if (tb9_state.charAt(j) == 0)
  444. full = false
  445. }
  446. if (full) return true
  447. while (1) {
  448. var num = tb9_getRandom(tb9_messages[tb9_currMsg].length)
  449. if (tb9_state.charAt(num) == "0")
  450. break
  451. }
  452. tb9_state = tb9_state.substring(0, num) + "1" + tb9_state.substring(num + 1, tb9_state.length)
  453. return false
  454. }
  455. function tb9_getRandom(max) {
  456. var now = new Date()
  457. var num = now.getTime() * now.getSeconds() * Math.random()
  458. return num % max
  459. }
  460. tb9_startBanner()
  461. </script>
  462. <footer>
  463. <table style="border:1px;border-color:blue;border-style:double;padding-left:2px;padding-right:2px;bottom:2px;height:25px;width:100%;">
  464. <tbody><tr>
  465. <td style="border: 1px;width:10%; background: transparent;box-shadow: 0px 0px 8px green;
  466. bottom: 2px; border-color:green; border-style: dotted" ;="">
  467. <center>
  468. <font style="color:skyblue;direction:center;font-family:electrolize;font-size:20px;text-shadow:0px 0px 5px Sms;"> Greetz To</font></center>
  469. </td>
  470. <td><marquee class="z" style="color:skyblue; font-size:20px;font-family:electrolize;text-shadow: 0px 0px 5px aqua; direction:left;" scrollamount="5px">All Myanmar Hacking Team And You!! <br>
  471. </font></marquee>
  472. </td></tr>
  473. </tbody></table>
  474. </footer>
  475.  
  476. </body>
  477. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement