Advertisement
Guest User

Untitled

a guest
May 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.60 KB | None | 0 0
  1.  
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  5. <head>
  6. <link rel="SHORTCUT ICON"
  7.  
  8. href="http://imageshack.us/a/img69/8052/anonymousx.gif" type="image/png"
  9.  
  10. rel="icon">
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  12. <title></title>
  13. <script type="text/javascript">
  14. function tb8_makeArray(n){
  15. this.length = n;
  16. return this.length;
  17. }
  18. tb8_messages = new tb8_makeArray(3);
  19. tb8_messages[0] = "Hacked By S0u1";
  20. tb8_messages[1] = "Hacked By S0u1";
  21. tb8_messages[2] = "Hacked By S0u1";
  22. tb8_rptType = 'infinite';
  23. tb8_rptNbr = 5;
  24. tb8_speed = 100;
  25. tb8_delay = 2000;
  26. var tb8_counter=1;
  27. var tb8_currMsg=0;
  28. var tb8_tekst ="";
  29. var tb8_i=0;
  30. var tb8_TID = null;
  31. function tb8_pisi(){
  32. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  33. document.title = tb8_tekst;
  34. tb8_sp=tb8_speed;
  35. tb8_i++;
  36. if (tb8_i==tb8_messages[tb8_currMsg].length){
  37. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  38. }
  39. if (tb8_currMsg == tb8_messages.length){
  40. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  41. clearTimeout(tb8_TID);
  42. return;
  43. }
  44. tb8_counter++;
  45. tb8_currMsg = 0;
  46. }
  47. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  48. }
  49. tb8_pisi()
  50. </script><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  51. <meta content="MSHTML 6.00.2900.2180"
  52.  
  53. name="GENERATOR"></head>
  54. <body text="#00ff00" bgcolor="#000000" onload="writetext()"
  55.  
  56. oncontextmenu="return false" onselectstart="return false" ondragstart="return
  57.  
  58. false">
  59. <EMBED
  60. SRC=""
  61. AUTOSTART="TRUE" LOOP="TRUE" WIDTH="0"
  62.  
  63. HEIGHT="0" ALIGN="CENTER">
  64.  
  65. <a>
  66. </a><center><a><img
  67.  
  68. src="http://lamcdn.net/hopesandfears.com/post_image-image/MmFN4J333lfZLhEf7L5Wnw-wide.gif"
  69.  
  70. alt="lol&quot;&quot;" width="200" height="110">
  71. </a>
  72. <pre><iframe width="0" height="0" src="https://www.youtube.com/embed/DzsonDJCSzM?amp;autoplay=1" frameborder="0"></iframe>
  73. </embed>
  74. <SCRIPT LANGUAGE="JavaScript">
  75.  
  76. </SCRIPT>
  77. </script>
  78.  
  79. <center><script type="text/javascript">
  80. // Hacked By : S0u1
  81. TypingText = function(element, interval, cursor, finishedCallback) {
  82. if((typeof document.getElementById == "undefined") || (typeof
  83.  
  84. element.innerHTML == "undefined")) {
  85. this.running = true;
  86. return;
  87. }
  88. this.element = element;
  89. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  90.  
  91. return; });
  92. this.interval = (typeof interval == "undefined" ? 100 : interval);
  93. this.origText = this.element.innerHTML;
  94. this.unparsedOrigText = this.origText;
  95. this.cursor = (cursor ? cursor : "");
  96. this.currentText = "";
  97. this.currentChar = 0;
  98. this.element.typingText = this;
  99. if(this.element.id == "") this.element.id = "typingtext" +
  100.  
  101. TypingText.currentIndex++;
  102. TypingText.all.push(this);
  103. this.running = false;
  104. this.inTag = false;
  105. this.tagBuffer = "";
  106. this.inHTMLEntity = false;
  107. this.HTMLEntityBuffer = "";
  108. }
  109. TypingText.all = new Array();
  110. TypingText.currentIndex = 0;
  111. TypingText.runAll = function() {
  112. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  113. }
  114. TypingText.prototype.run = function() {
  115. if(this.running) return;
  116. if(typeof this.origText == "undefined") {
  117. setTimeout("document.getElementById('" + this.element.id +
  118.  
  119. "').typingText.run()", this.interval);
  120. return;
  121. }
  122. if(this.currentText == "") this.element.innerHTML = "";
  123. if(this.currentChar < this.origText.length) {
  124. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  125. this.tagBuffer = "<";
  126. this.inTag = true;
  127. this.currentChar++;
  128. this.run();
  129. return;
  130. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  131. this.tagBuffer += ">";
  132. this.inTag = false;
  133. this.currentText += this.tagBuffer;
  134. this.currentChar++;
  135. this.run();
  136. return;
  137. } else if(this.inTag) {
  138. this.tagBuffer += this.origText.charAt(this.currentChar);
  139. this.currentChar++;
  140. this.run();
  141. return;
  142. } else if(this.origText.charAt(this.currentChar) == "&" && !
  143.  
  144. this.inHTMLEntity) {
  145. this.HTMLEntityBuffer = "&";
  146. this.inHTMLEntity = true;
  147. this.currentChar++;
  148. this.run();
  149. return;
  150. } else if(this.origText.charAt(this.currentChar) == ";" &&
  151.  
  152. this.inHTMLEntity) {
  153. this.HTMLEntityBuffer += ";";
  154. this.inHTMLEntity = false;
  155. this.currentText += this.HTMLEntityBuffer;
  156. this.currentChar++;
  157. this.run();
  158. return;
  159. } else if(this.inHTMLEntity) {
  160. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  161. this.currentChar++;
  162. this.run();
  163. return;
  164. } else {
  165. this.currentText += this.origText.charAt(this.currentChar);
  166. }
  167. this.element.innerHTML = this.currentText;
  168. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  169.  
  170. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  171.  
  172. "");
  173. this.currentChar++;
  174. setTimeout("document.getElementById('" + this.element.id +
  175.  
  176. "').typingText.run()", this.interval);
  177. } else {
  178. this.currentText = "";
  179. this.currentChar = 0;
  180. this.running = false;
  181. this.finishedCallback();
  182. }
  183. }
  184. </script>
  185. <p id="message">
  186. --------------------------------------------------------------------
  187. <br>
  188. GREETINGS : Admin or Visitor
  189. <br>
  190. This server has been pawned by S0u1 and C0d3c0rrup7...
  191. <br>
  192. Please Patch this site this is just a warning, Or Im just getting started
  193. <br>
  194. --------------------------------------------------------------------
  195. <br>
  196. The reason your site has been hacked is you done something in
  197. <br>
  198. the past or you were my target..
  199. <br>
  200. If you want to contact me click the IP address code below..
  201. <br>
  202. It takes you to our Hacking Liberation Of The World Page.
  203. <br>
  204. We will only speak about what happen to the server..
  205. <br>
  206. We will need, picture proof of the incedent and proof your the admin.
  207. <br>
  208. We are legion.
  209. <br>
  210.  
  211. Three Can Keep A Secret Only If the Two Are Dead.......
  212. <br>
  213. Support US!!!!.
  214. NO HARM HAS BEEN DONE ON THE SERVER.
  215. <br>
  216. DELETE THIS SCRIPT AND CARRY ON!!!!
  217. <br>
  218. Expect us!!!
  219. <br>
  220. --------------------------------------------------------------------
  221. <br>
  222. Hacked By S0u1
  223. <br>
  224. --------------------------------------------------------------------
  225. <br>
  226. GREETS: S0u1, C0d3c0rrup7, AnonZorLulz, ub3r-r00t, Sensei, LulzTigre,
  227. <br>
  228. D3v, K0d3r, Mr.S4ng, Mr.R3b, and K4t!!!!!
  229. <br>
  230. Also DAX... Iza skid LOL.
  231.  
  232. <script type="text/javascript">
  233. new TypingText(document.getElementById("message"), 50, function(i){ var ar
  234.  
  235. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  236.  
  237. //Type out examples:
  238. TypingText.runAll();
  239.  
  240. </script><center><a
  241.  
  242. href="https://www.facebook.com/HLoTW/"><img
  243.  
  244. src="http://www.wieistmeineip.de/ip-address/?size=468x60" border="0"
  245.  
  246. width="468" height="60" alt="IP" /></a><br />
  247.  
  248. </span></p>
  249.  
  250.  
  251.  
  252. <!-- Cursor -->
  253.  
  254. <script type="text/javascript">
  255. var colour="FF0000";
  256. var sparkles=80;
  257. var x=ox=400;
  258. var y=oy=300;
  259. var swide=800;
  260. var shigh=600;
  261. var sleft=sdown=0;
  262. var tiny=new Array();
  263. var star=new Array();
  264. var starv=new Array();
  265. var starx=new Array();
  266. var stary=new Array();
  267. var tinyx=new Array();
  268. var tinyy=new Array();
  269. var tinyv=new Array();
  270. window.onload=function() { if (document.getElementById) {
  271. var i, rats, rlef, rdow;
  272. for (var i=0; i<sparkles; i++) {
  273. var rats=createDiv(3, 3);
  274. rats.style.visibility="hidden";
  275. document.body.appendChild(tiny[i]=rats);
  276. starv[i]=0;
  277. tinyv[i]=0;
  278. var rats=createDiv(5, 5);
  279. rats.style.backgroundColor="transparent";
  280. rats.style.visibility="hidden";
  281. var rlef=createDiv(1, 5);
  282. var rdow=createDiv(5, 1);
  283. rats.appendChild(rlef);
  284. rats.appendChild(rdow);
  285. rlef.style.top="2px";
  286. rlef.style.left="0px";
  287. rdow.style.top="0px";
  288. rdow.style.left="2px";
  289. document.body.appendChild(star[i]=rats);
  290. }
  291. set_width();
  292. sparkle();
  293. }}
  294. function sparkle() {
  295. var c;
  296. if (x!=ox || y!=oy) {
  297. ox=x;
  298. oy=y;
  299. for (c=0; c<sparkles; c++) if (!starv[c]) {
  300. star[c].style.left=(starx[c]=x)+"px";
  301. star[c].style.top=(stary[c]=y)+"px";
  302. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  303. star[c].style.visibility="visible";
  304. starv[c]=50;
  305. break;
  306. }
  307. }
  308. for (c=0; c<sparkles; c++) {
  309. if (starv[c]) update_star(c);
  310. if (tinyv[c]) update_tiny(c);
  311. }
  312. setTimeout("sparkle()", 40);
  313. }
  314. function update_star(i) {
  315. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  316. if (starv[i]) {
  317. stary[i]+=1+Math.random()*3;
  318. if (stary[i]<shigh+sdown) {
  319. star[i].style.top=stary[i]+"px";
  320. starx[i]+=(i%5-2)/5;
  321. star[i].style.left=starx[i]+"px";
  322. }
  323. else {
  324. star[i].style.visibility="hidden";
  325. starv[i]=0;
  326. return;
  327. }
  328. }
  329. else {
  330. tinyv[i]=50;
  331. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  332. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  333. tiny[i].style.width="2px";
  334. tiny[i].style.height="2px";
  335. star[i].style.visibility="hidden";
  336. tiny[i].style.visibility="visible"
  337. }
  338. }
  339. function update_tiny(i) {
  340. if (--tinyv[i]==25) {
  341. tiny[i].style.width="1px";
  342. tiny[i].style.height="1px";
  343. }
  344. if (tinyv[i]) {
  345. tinyy[i]+=1+Math.random()*3;
  346. if (tinyy[i]<shigh+sdown) {
  347. tiny[i].style.top=tinyy[i]+"px";
  348. tinyx[i]+=(i%5-2)/5;
  349. tiny[i].style.left=tinyx[i]+"px";
  350. }
  351. else {
  352. tiny[i].style.visibility="hidden";
  353. tinyv[i]=0;
  354. return;
  355. }
  356. }
  357. else tiny[i].style.visibility="hidden";
  358. }
  359. document.onmousemove=mouse;
  360. function mouse(e) {
  361. set_scroll();
  362. y=(e)?e.pageY:event.y+sdown;
  363. x=(e)?e.pageX:event.x+sleft;
  364. }
  365. function set_scroll() {
  366. if (typeof(self.pageYOffset)=="number") {
  367. sdown=self.pageYOffset;
  368. sleft=self.pageXOffset;
  369. }
  370. else if (document.body.scrollTop || document.body.scrollLeft) {
  371. sdown=document.body.scrollTop;
  372. sleft=document.body.scrollLeft;
  373. }
  374. else if (document.documentElement && (document.documentElement.scrollTop
  375.  
  376. || document.documentElement.scrollLeft)) {
  377. sleft=document.documentElement.scrollLeft;
  378. sdown=document.documentElement.scrollTop;
  379. }
  380. else {
  381. sdown=0;
  382. sleft=0;
  383. }
  384. }
  385. window.onresize=set_width;
  386. function set_width() {
  387. if (typeof(self.innerWidth)=="number") {
  388. swide=self.innerWidth;
  389. shigh=self.innerHeight;
  390. }
  391. else if (document.documentElement &&
  392.  
  393. document.documentElement.clientWidth) {
  394. swide=document.documentElement.clientWidth;
  395. shigh=document.documentElement.clientHeight;
  396. }
  397. else if (document.body.clientWidth) {
  398. swide=document.body.clientWidth;
  399. shigh=document.body.clientHeight;
  400. }
  401. }
  402. function createDiv(height, width) {
  403. var div=document.createElement("div");
  404. div.style.position="absolute";
  405. div.style.height=height+"px";
  406. div.style.width=width+"px";
  407. div.style.overflow="hidden";
  408. div.style.backgroundColor=colour;
  409. return (div);
  410. }
  411. </script>
  412.  
  413.  
  414.  
  415. <script type="text/javascript">/*Important Function to blend the tabs in and
  416.  
  417. out*/
  418. function blendoff(idname) {document.getElementById(idname).style.display
  419. = 'none';}
  420. function blendon(idname) {document.getElementById(idname).style.display
  421. = 'block';}</script><script type="text/javascript">/*Function for our Tabmenu
  422.  
  423. with 4 Tabs*/
  424. function swichtabs(wert) {
  425. if (wert=='1'){
  426. document.getElementById('tablink1').className='tab1 tabactive';
  427. document.getElementById('tablink2').className='tab2';
  428. document.getElementById('tablink3').className='tab3';
  429. document.getElementById('tablink4').className='tab4';
  430. }else if (wert=='2'){
  431. document.getElementById('tablink1').className='tab1';
  432. document.getElementById('tablink2').className='tab2 tabactive';
  433. document.getElementById('tablink3').className='tab3';
  434. document.getElementById('tablink4').className='tab4';
  435. }else if (wert=='3'){
  436. document.getElementById('tablink1').className='tab1';
  437. document.getElementById('tablink2').className='tab2';
  438. document.getElementById('tablink3').className='tab3 tabactive';
  439. document.getElementById('tablink4').className='tab4';
  440. } else if (wert=='4'){
  441. document.getElementById('tablink1').className='tab1';
  442. document.getElementById('tablink2').className='tab2';
  443. document.getElementById('tablink3').className='tab3';
  444. document.getElementById('tablink4').className='tab4 tabactive';
  445. }
  446. }</script>
  447.  
  448.  
  449. <script>alert("Uh,Oh... Something Happened!!!")</script>
  450. <script>alert("You Been Hacked By S0u1!")</script></center></center></body>
  451.  
  452. </html>
  453. <!-- Codes by HTML.am -->
  454. <!-- Hosting24 Analytics Code -->
  455. <script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
  456. <!-- End Of Analytics Code -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement