Guest User

MvStats10

a guest
Jul 30th, 2013
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.82 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Hacked By MvStats10</title>
  4. <embed src="https://www.youtube.com/v/YHWRLtybykc&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></embed>
  5. <script type="text/javascript">
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13. TypingText = function(element, interval, cursor, finishedCallback) {
  14.  
  15.  
  16.  
  17. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  18.  
  19.  
  20.  
  21. this.running = true; // Never run.
  22.  
  23.  
  24.  
  25. return;
  26.  
  27.  
  28.  
  29. }
  30.  
  31.  
  32.  
  33. this.element = element;
  34.  
  35.  
  36.  
  37. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  38.  
  39.  
  40.  
  41. this.interval = (typeof interval == "undefined" ? 50 : interval);
  42.  
  43.  
  44.  
  45. this.origText = this.element.innerHTML;
  46.  
  47.  
  48.  
  49. this.unparsedOrigText = this.origText;
  50.  
  51.  
  52.  
  53. this.cursor = (cursor ? cursor : "");
  54.  
  55.  
  56.  
  57. this.currentText = "";
  58.  
  59.  
  60.  
  61. this.currentChar = 0;
  62.  
  63.  
  64.  
  65. this.element.typingText = this;
  66.  
  67.  
  68.  
  69. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  70.  
  71.  
  72.  
  73. TypingText.all.push(this);
  74.  
  75.  
  76.  
  77. this.running = false;
  78.  
  79.  
  80.  
  81. this.inTag = false;
  82.  
  83.  
  84.  
  85. this.tagBuffer = "";
  86.  
  87.  
  88.  
  89. this.inHTMLEntity = false;
  90.  
  91.  
  92.  
  93. this.HTMLEntityBuffer = "";
  94.  
  95.  
  96.  
  97. }
  98.  
  99.  
  100.  
  101. TypingText.all = new Array();
  102.  
  103.  
  104.  
  105. TypingText.currentIndex = 0;
  106.  
  107.  
  108.  
  109. TypingText.runAll = function() {
  110.  
  111.  
  112.  
  113. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  114.  
  115.  
  116.  
  117. }
  118.  
  119.  
  120.  
  121. TypingText.prototype.run = function() {
  122.  
  123.  
  124.  
  125. if(this.running) return;
  126.  
  127.  
  128.  
  129. if(typeof this.origText == "undefined") {
  130.  
  131.  
  132.  
  133. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141. patience.
  142.  
  143.  
  144.  
  145. return;
  146.  
  147.  
  148.  
  149. }
  150.  
  151.  
  152.  
  153. if(this.currentText == "") this.element.innerHTML = "";
  154.  
  155.  
  156.  
  157. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  158.  
  159.  
  160.  
  161. if(this.currentChar < this.origText.length) {
  162.  
  163.  
  164.  
  165. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  166.  
  167.  
  168.  
  169. this.tagBuffer = "<";
  170.  
  171.  
  172.  
  173. this.inTag = true;
  174.  
  175.  
  176.  
  177. this.currentChar++;
  178.  
  179.  
  180.  
  181. this.run();
  182.  
  183.  
  184.  
  185. return;
  186.  
  187.  
  188.  
  189. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  190.  
  191.  
  192.  
  193. this.tagBuffer += ">";
  194.  
  195.  
  196.  
  197. this.inTag = false;
  198.  
  199.  
  200.  
  201. this.currentText += this.tagBuffer;
  202.  
  203.  
  204.  
  205. this.currentChar++;
  206.  
  207.  
  208.  
  209. this.run();
  210.  
  211.  
  212.  
  213. return;
  214.  
  215.  
  216.  
  217. } else if(this.inTag) {
  218.  
  219.  
  220.  
  221. this.tagBuffer += this.origText.charAt(this.currentChar);
  222.  
  223.  
  224.  
  225. this.currentChar++;
  226.  
  227.  
  228.  
  229. this.run();
  230.  
  231.  
  232.  
  233. return;
  234.  
  235.  
  236.  
  237. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  238.  
  239.  
  240.  
  241. this.HTMLEntityBuffer = "&";
  242.  
  243.  
  244.  
  245. this.inHTMLEntity = true;
  246.  
  247.  
  248.  
  249. this.currentChar++;
  250.  
  251.  
  252.  
  253. this.run();
  254.  
  255.  
  256.  
  257. return;
  258.  
  259.  
  260.  
  261. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  262.  
  263.  
  264.  
  265. this.HTMLEntityBuffer += ";";
  266.  
  267.  
  268.  
  269. this.inHTMLEntity = false;
  270.  
  271.  
  272.  
  273. this.currentText += this.HTMLEntityBuffer;
  274.  
  275.  
  276.  
  277. this.currentChar++;
  278.  
  279.  
  280.  
  281. this.run();
  282.  
  283.  
  284.  
  285. return;
  286.  
  287.  
  288.  
  289. } else if(this.inHTMLEntity) {
  290.  
  291.  
  292.  
  293. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  294.  
  295.  
  296.  
  297. this.currentChar++;
  298.  
  299.  
  300.  
  301. this.run();
  302.  
  303.  
  304.  
  305. return;
  306.  
  307.  
  308.  
  309. } else {
  310.  
  311.  
  312.  
  313. this.currentText += this.origText.charAt(this.currentChar);
  314.  
  315.  
  316.  
  317. }
  318.  
  319.  
  320.  
  321. this.element.innerHTML = this.currentText;
  322.  
  323.  
  324.  
  325. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) :
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333. this.cursor) : "");
  334.  
  335.  
  336.  
  337. this.currentChar++;
  338.  
  339.  
  340.  
  341. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  342.  
  343.  
  344.  
  345. } else {
  346.  
  347.  
  348.  
  349. this.currentText = "";
  350.  
  351.  
  352.  
  353. this.currentChar = 0;
  354.  
  355.  
  356.  
  357. this.running = false;
  358.  
  359.  
  360.  
  361. this.finishedCallback();
  362.  
  363.  
  364.  
  365. }
  366.  
  367.  
  368.  
  369. }
  370.  
  371.  
  372.  
  373. </script>
  374.  
  375.  
  376.  
  377. <style type="text/css">
  378.  
  379.  
  380.  
  381. body {
  382.  
  383. background-color:white;
  384.  
  385. font-family:"Courier", modern, monospace;
  386.  
  387. text-align:center;
  388.  
  389. margin-top:25px;
  390.  
  391. background-image: url(http://i.imgur.com/RYUCwCy.png);
  392.  
  393. }
  394.  
  395.  
  396.  
  397. .style2 {
  398.  
  399.  
  400.  
  401. font-size:16px;
  402.  
  403.  
  404.  
  405. color:white;
  406.  
  407.  
  408.  
  409. }
  410. .style3 {color: #58ACFA}
  411. .style4 {color: red}
  412. .style5 {
  413.  
  414. color: white;
  415.  
  416. font-size:16px
  417. }
  418. </style>
  419.  
  420. </head>
  421. <body background="http://i.imgur.com/RYUCwCy.png">
  422. <div align='center'><h1 style="font-family: Agency FB; font-size:40px; color: red">MvStats10</h1>></div>
  423. <center>
  424. <p id="example1">
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431. <br>
  432.  
  433. <strong><br>
  434.  
  435.  
  436.  
  437. <span class="style2">=====================================================================<br>
  438. <br>
  439.  
  440. <span class="style5"><span class="style4"></span></span>Hello <span class="style4">Admin!!</span><br>
  441. I knOw You aRe PisSed. Your Shitty SecUrity maDe Me Do This To Your Fuckin Site.<br>
  442. Now yOu can KiSs yOur ass's OfF xD<br>
  443. <span class="style3">MvStats10</span> was h3r3.<br>
  444. nOw yOu can FucK yOur self !<br>
  445. BYe<br>
  446. <span class="style2">=====================================================================</span></strong></p>
  447. <script type="text/javascript">
  448.  
  449.  
  450.  
  451. //Define first typing example:
  452.  
  453.  
  454.  
  455. new TypingText(document.getElementById("example1"));
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467. //Type out examples:
  468.  
  469.  
  470.  
  471. TypingText.runAll();
  472.  
  473.  
  474.  
  475. </script>
  476.  
  477.  
  478. </body></html><!-- www.1freehosting.com Analytics Code -->
  479. <noscript><a title="Free hosting" href="http://www.1freehosting.com">Free hosting</a><a title="Web host free" href="http://www.1freehosting.com">Web host free</a><a title="Free websites hosting" href="http://www.1freehosting.com/free-website-and-hosting.html">Free websites hosting</a><a title="Pagerank SEO analytic" href="http://www.1pagerank.com">Pagerank SEO analytic</a></noscript>
  480. <script type="text/javascript">
  481.  
  482. var _gaq = _gaq || [];
  483. _gaq.push(['_setAccount', 'UA-21588661-2']);
  484. _gaq.push(['_setDomainName', window.location.host]);
  485. _gaq.push(['_setAllowLinker', true]);
  486. _gaq.push(['_trackPageview']);
  487.  
  488. (function() {
  489. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  490. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  491. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  492.  
  493. Â Â var fga = document.createElement('script'); fga.type = 'text/javascript'; fga.async = true;
  494. Â Â fga.src = ('https:' == document.location.protocol ? 'https://www' : 'http://www') + '.1freehosting.com/cdn/ga.js';
  495. Â Â var fs = document.getElementsByTagName('script')[0]; fs.parentNode.insertBefore(fga, fs);
  496.  
  497. })();
  498. </script>
  499. <!-- End Of Analytics Code -->
  500. </center>
  501. </body
  502. </html>
Advertisement
Add Comment
Please, Sign In to add comment