Advertisement
Guest User

mwehehe

a guest
Nov 20th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.20 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Touched By Thelast7</title>
  6. <link rel="shortcut icon" href=" :) "/>
  7. </head>
  8.  
  9. <body><html><head></head><body>html>
  10.  
  11. <title>Thelast7</title>
  12. <meta name="robots" content="index, follow">
  13. <meta name="description" content="Hacked Web Site" />
  14. <meta name="keywords" content="Ch3Ck3R,Ch3ck3r">
  15. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
  16. <style>
  17. body{
  18. text-align: center;
  19. font-size: 12px;
  20. font-family: verdana;
  21. background-color: black;
  22. background: url('index.html') repeat center center fixed black;
  23. }
  24. h1 {
  25. padding: 10px 15px;
  26. margin: 0px;
  27. font-size: 14px;
  28. background-color: #000000;
  29. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  30. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  31. color: #FFF;
  32. //-webkit-border-radius:8px 8px 0px 0px;
  33. //-moz-border-radius: 8px 8px 0px 0px;
  34. border-radius: 8px 8px 0px 0px;
  35. text-shadow:1px 1px 2px #333333;
  36. opacity: 0.5;
  37. }
  38. table {
  39. width: 565px;
  40. }
  41. table tr td{
  42. font-family: verdana;
  43. font-size: 11px;
  44. padding: 10px 5px;
  45. border-bottom: solid 1px #CCC;
  46.  
  47. }
  48. #wrapper{
  49. width: 800px;
  50. margin: 10px auto;
  51. text-align: left;
  52. background: url('index.html') no-repeat center center fixed;
  53. }
  54. #console{
  55. height: 450px;
  56. overflow: auto;
  57. background-color: #000;
  58. padding: 15px;
  59. font-family: monospace;
  60. font-size: 12px;
  61. color: #FFF;
  62. }
  63. .content{
  64. padding: 15px;
  65. }
  66. #commander{
  67. border: solid 1px #CCC;
  68. padding: 5px 10px;
  69. -webkit-border-radius: 2px;
  70. -moz-border-radius: 2px;
  71. border-radius: 2px;
  72. margin: 5px;
  73. width: 590px;
  74. height: 30px;
  75. }
  76. .box{
  77. -moz-box-shadow: 1px 1px 8px #666;
  78. -webkit-box-shadow: 1px 1px 8px #666;
  79. box-shadow: 1px 1px 8px #40D5D2;
  80. border: solid 1px black;
  81. -webkit-border-radius: 8px 8px 0px 0px;
  82. -moz-border-radius: 8px 8px 0px 0px;
  83. border-radius: 8px 8px 0px 0px;
  84. margin: 15px 0px;
  85. background-color: #F5F5F5;
  86. opacity: 0.8;
  87. }
  88. #help{
  89. width: 300px;
  90. float: right;
  91. }
  92. .prefix{
  93. color: #0077E7;
  94. }
  95. .keyword{
  96. color: #9eff63;
  97. }
  98. .error{
  99. color: #FF0000;
  100. }
  101. .spacer{
  102. clear: both;
  103. display: block;
  104. }
  105. </style>
  106. <script type="text/javascript">
  107. //BH?SS?AN
  108. TypingText = function(element, interval, cursor, finishedCallback) {
  109. if((typeof document.getElementById == "undefined") || (typeof
  110.  
  111. element.innerHTML == "undefined")) {
  112. this.running = true;
  113. return;
  114. }
  115. this.element = element;
  116. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  117.  
  118. return; });
  119. this.interval = (typeof interval == "undefined" ? 100 : interval);
  120. this.origText = this.element.innerHTML;
  121. this.unparsedOrigText = this.origText;
  122. this.cursor = (cursor ? cursor : "");
  123. this.currentText = "";
  124. this.currentChar = 0;
  125. this.element.typingText = this;
  126. if(this.element.id == "") this.element.id = "typingtext" +
  127.  
  128. TypingText.currentIndex++;
  129. TypingText.all.push(this);
  130. this.running = false;
  131. this.inTag = false;
  132. this.tagBuffer = "";
  133. this.inHTMLEntity = false;
  134. this.HTMLEntityBuffer = "";
  135. }
  136. TypingText.all = new Array();
  137. TypingText.currentIndex = 0;
  138. TypingText.runAll = function() {
  139. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  140. }
  141. TypingText.prototype.run = function() {
  142. if(this.running) return;
  143. if(typeof this.origText == "undefined") {
  144. setTimeout("document.getElementById('" + this.element.id +
  145.  
  146. "').typingText.run()", this.interval);
  147. return;
  148. }
  149. if(this.currentText == "") this.element.innerHTML = "";
  150. if(this.currentChar < this.origText.length) {
  151. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  152. this.tagBuffer = "<";
  153. this.inTag = true;
  154. this.currentChar++;
  155. this.run();
  156. return;
  157. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  158. this.tagBuffer += ">";
  159. this.inTag = false;
  160. this.currentText += this.tagBuffer;
  161. this.currentChar++;
  162. this.run();
  163. return;
  164. } else if(this.inTag) {
  165. this.tagBuffer += this.origText.charAt(this.currentChar);
  166. this.currentChar++;
  167. this.run();
  168. return;
  169. } else if(this.origText.charAt(this.currentChar) == "&" && !
  170.  
  171. this.inHTMLEntity) {
  172. this.HTMLEntityBuffer = "&";
  173. this.inHTMLEntity = true;
  174. this.currentChar++;
  175. this.run();
  176. return;
  177. } else if(this.origText.charAt(this.currentChar) == ";" &&
  178.  
  179. this.inHTMLEntity) {
  180. this.HTMLEntityBuffer += ";";
  181. this.inHTMLEntity = false;
  182. this.currentText += this.HTMLEntityBuffer;
  183. this.currentChar++;
  184. this.run();
  185. return;
  186. } else if(this.inHTMLEntity) {
  187. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  188. this.currentChar++;
  189. this.run();
  190. return;
  191. } else {
  192. this.currentText += this.origText.charAt(this.currentChar);
  193. }
  194. this.element.innerHTML = this.currentText;
  195. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  196.  
  197. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  198.  
  199. "");
  200. this.currentChar++;
  201. setTimeout("document.getElementById('" + this.element.id +
  202.  
  203. "').typingText.run()", this.interval);
  204. } else {
  205. this.currentText = "";
  206. this.currentChar = 0;
  207. this.running = false;
  208. this.finishedCallback();
  209. }
  210. }
  211. </script>
  212.  
  213.  
  214.  
  215. <div id="wrapper">
  216.  
  217. <div class="box">
  218.  
  219. <h1>
  220. Thelast7</h1>
  221. <div id="console">
  222.  
  223. <p id="message">
  224. <font color="#009900"> Please Wait . . . </font> <br>
  225.  
  226. <font color="#009900"> Trying connect to Server . . .</font><br>
  227. <font color="#F00000"><font color="#FFF000">Thelast7</font> Connected ! </font><br>
  228. <font color="#F00000"><font color="#FFF000">Thelast7<font color="#F00000"></font></font>Check Your Conection</font><br>
  229. <font color="#00FFFF""><font color="#FFF000">Thelast7<font color="#FFF000"></font></font> The Site Has Been Defaced . . !</font><br>
  230. <font color="#009900"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> Sorry Admin, Im Tested My Brain . . .</font><br>
  231. <font color="#F00000"><font color="#FFF000">Thelast7</font> Is The Owner Now . . .</font><br>
  232. <font color="#009900"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> Your Site Is Safe . . . </font><br>
  233. <font color="#FF00FF"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> Sorry My Bro . . .</font><br>
  234. <font color="#009900"><font color="#FFF000">Thelast<font color="#F00000"></font></font> We Will Never Stop Hacking . . . </font><br>
  235. <font color="#F5A9E1"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> It's Not a game . . .</font><br>
  236. <font color="#F5A9E1"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> It's Our Job . . . </font><br>
  237. <font color="#F5A9E1"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> Our Job Is To Improve Security Notification . . .</font><br>
  238. <font color="#00FFFF"><font color="#FFF000">.....<font color="#F00000"></font></font> . . . .</font><br>
  239. <font color="#00FFFF"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> We Make Love, Not Wars . . .</font><br>
  240. <font color="#FF00FF"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> Me Not Hackers . . .</font><br>
  241. <font color="#009900"><font color="#FFF000">Thelast7<font color="#F00000"></font></font> Reason: Your Security Is Up To 0% !</font><br>
  242.  
  243. <br>
  244. <font color="green">[+] Thelast7<br>
  245. <font color="green">[+] Riskimhmmd0@Gmail.Com<br>
  246. <br>
  247. <br>
  248. <font color="red"> >> Touched By TheLast7 << </font><br>
  249. <font color="red"> >> Loading To Brotherhood << </font><br>
  250. <script type="text/javascript">
  251. new TypingText(document.getElementById("message"), 50, function(i){ var ar
  252.  
  253. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  254.  
  255. //Type out examples:
  256. TypingText.runAll();
  257.  
  258. </script></font></font></font></font></font></font></font></font></font> |</span></p>
  259. </div>
  260. <font color="gray"><font color="white"><font color="white"><font color="white"><font color="green"><font color="green">
  261. <div class="spacer">
  262. </div>
  263. <iframe width="1" height="1" src="index.html" frameborder="0" allowfullscreen></iframe>
  264. <center>
  265. <img src="https://i.imgsafe.org/65999e9679.gif">
  266. </center>
  267. </font></font></font></font></font></font></div>
  268. </div>
  269. </body></html>
  270. <iframe width="0" height="0" src="https://4.top4top.net/m_14203w56v0.mp3" frameborder="0" allowfullscreen></iframe>
  271. </body>
  272. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement