Advertisement
Guest User

CODE LÀM WEPSITE HACKER BY KUL

a guest
Apr 6th, 2015
3,471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.07 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. <html><head><script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js"></script><link rel="stylesheet" href="http://static.jsbin.com/css/edit.css"></head><body bgcolor="black" oncontextmenu="return false" onkeydown="return false" onload="type_text()" onclick="alert(&quot;.:: #EHG was here ::. (:&quot;)">
  6.  
  7. <title>#EHG</title>
  8. <style id="jsbin-css">
  9.  
  10. </style>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  12. <link href="http://fonts.googleapis.com/css?family=Orbitron:700" rel="stylesheet" type="text/css">
  13. <style type="text/css">BODY { background-image:url('http://i.imgur.com/8TtnhOo.jpg'); </style>
  14.  
  15. <!-- no txt inicio -->
  16. <script language="Javascript">
  17. <!-- Begin
  18. function disableselect(e){
  19. return false
  20. }
  21. function reEnable(){
  22. return true
  23. }
  24. document.onselectstart=new Function ("return false")
  25. if (window.sidebar){
  26. document.onmousedown=disableselect
  27. document.onclick=reEnable
  28. }
  29. // End -->
  30. </script>
  31. <!-- no txt fin -->
  32.  
  33. <style type="text/css">BODY {
  34. SCROLLBAR-FACE-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #000000; SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-TRACK-COLOR: #ffffff; FONT-FAMILY: Verdana; SCROLLBAR-DARKSHADOW-COLOR: #000000
  35. }
  36. .Estilo10 {
  37. COLOR: #ffffff; FONT-FAMILY: Haettenschweiler
  38. }
  39. .Estilo8 {
  40. FONT-SIZE: 10px; COLOR: #ffffff; FONT-FAMILY: Haettenschweiler
  41. }
  42.  
  43. </style>
  44.  
  45.  
  46.  
  47.  
  48. <center>
  49.  
  50.  
  51.  
  52.  
  53.  
  54. <script language="JavaScript">
  55.  
  56.  
  57. TypingText = function(element, interval, cursor, finishedCallback) {
  58. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  59. this.running = true; // Never run.
  60. return;
  61. }
  62. this.element = element;
  63. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  64. this.interval = (typeof interval == "undefined" ? 20 : interval);
  65. this.origText = this.element.innerHTML;
  66. this.unparsedOrigText = this.origText;
  67. this.cursor = (cursor ? cursor : "");
  68. this.currentText = "";
  69. this.currentChar = 0;
  70. this.element.typingText = this;
  71. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  72. TypingText.all.push(this);
  73. this.running = false;
  74. this.inTag = false;
  75. this.tagBuffer = "";
  76. this.inHTMLEntity = false;
  77. this.HTMLEntityBuffer = "";
  78. }
  79. TypingText.all = new Array();
  80. TypingText.currentIndex = 0;
  81. TypingText.runAll = function() {
  82. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  83. }
  84. TypingText.prototype.run = function() {
  85. if(this.running) return;
  86. if(typeof this.origText == "undefined") {
  87. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  88. return;
  89. }
  90. if(this.currentText == "") this.element.innerHTML = "";
  91. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  92. if(this.currentChar < this.origText.length) {
  93. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  94. this.tagBuffer = "<";
  95. this.inTag = true;
  96. this.currentChar++;
  97. this.run();
  98. return;
  99. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  100. this.tagBuffer += ">";
  101. this.inTag = false;
  102. this.currentText += this.tagBuffer;
  103. this.currentChar++;
  104. this.run();
  105. return;
  106. } else if(this.inTag) {
  107. this.tagBuffer += this.origText.charAt(this.currentChar);
  108. this.currentChar++;
  109. this.run();
  110. return;
  111. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  112. this.HTMLEntityBuffer = "&";
  113. this.inHTMLEntity = true;
  114. this.currentChar++;
  115. this.run();
  116. return;
  117. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  118. this.HTMLEntityBuffer += ";";
  119. this.inHTMLEntity = false;
  120. this.currentText += this.HTMLEntityBuffer;
  121. this.currentChar++;
  122. this.run();
  123. return;
  124. } else if(this.inHTMLEntity) {
  125. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  126. this.currentChar++;
  127. this.run();
  128. return;
  129. } else {
  130. this.currentText += this.origText.charAt(this.currentChar);
  131. }
  132. this.element.innerHTML = this.currentText;
  133. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  134. this.currentChar++;
  135. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  136. } else {
  137. this.currentText = "";
  138. this.currentChar = 0;
  139. this.running = false;
  140. this.finishedCallback();
  141. }
  142. }
  143. </script>
  144. <center><strong><span style="color: #ff0000"><span style="color: #00ff00"><img alt="" src="http://img91.imageshack.us/img91/3434/135916dgtf468er4kp6.gif" />
  145. <center><img border="0" align=center src="http://i965.photobucket.com/albums/ae134/SergieYong/logo_empty_group_zps79e31bf2.png" width="200" height="200"></center>
  146. <span class=a10><u8:p>&nbsp;</u8:p></span></p>
  147. <center>
  148. <font face="Courier New" size="5.5"><h3>
  149. <script>
  150.  
  151. farbbibliothek = new Array();
  152.  
  153. 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");
  154.  
  155. farbbibliothek[1] = new Array("#00FF00","black","#00FF00","#00FF00");
  156.  
  157. 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");
  158.  
  159. 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");
  160.  
  161. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","black","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  162.  
  163. farbbibliothek[5] = new Array("black","black","black","white","white","white");
  164.  
  165. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  166.  
  167. farben = farbbibliothek[4];
  168.  
  169. function farbschrift()
  170.  
  171. {
  172.  
  173. for(var i=0 ; i<Buchstabe.length; i++)
  174.  
  175. {
  176.  
  177. document.all["a"+i].style.color=farben[i];
  178.  
  179. }
  180.  
  181. farbverlauf();
  182.  
  183. }
  184.  
  185. function string2array(text)
  186.  
  187. {
  188.  
  189. Buchstabe = new Array();
  190.  
  191. while(farben.length<text.length)
  192.  
  193. {
  194.  
  195. farben = farben.concat(farben);
  196.  
  197. }
  198.  
  199. k=0;
  200.  
  201. while(k<=text.length)
  202.  
  203. {
  204.  
  205. Buchstabe[k] = text.charAt(k);
  206.  
  207. k++;
  208.  
  209. }
  210.  
  211. }
  212.  
  213. function divserzeugen()
  214.  
  215. {
  216.  
  217. for(var i=0 ; i<Buchstabe.length; i++)
  218.  
  219. {
  220.  
  221. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  222.  
  223. }
  224.  
  225. farbschrift();
  226.  
  227. }
  228.  
  229. var a=1;
  230.  
  231. function farbverlauf()
  232.  
  233. {
  234.  
  235. for(var i=0 ; i<farben.length; i++)
  236.  
  237. {
  238.  
  239. farben[i-1]=farben[i];
  240.  
  241. }
  242.  
  243. farben[farben.length-1]=farben[-1];
  244.  
  245.  
  246.  
  247. setTimeout("farbschrift()",30);
  248.  
  249. }
  250.  
  251. // Zu Demonstrationszwecken**
  252.  
  253. var farbsatz=1;
  254.  
  255. function farbtauscher()
  256.  
  257. {
  258.  
  259. farben = farbbibliothek[farbsatz];
  260.  
  261. while(farben.length<text.length)
  262.  
  263. {
  264.  
  265. farben = farben.concat(farben);
  266.  
  267. }
  268.  
  269. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  270.  
  271. }
  272.  
  273. setInterval("farbtauscher()",5000);
  274.  
  275. text= "--[ YOUR SITE HAS BEEN DOWN ]--"; //h
  276.  
  277. string2array(text);
  278.  
  279. divserzeugen();
  280.  
  281. //document.write(text);</script>
  282. <br>
  283. <style>
  284. td{align: center; font-family: Bradley Hand ITC; font-size: 18pt; color: black}
  285. a{align: center; font-family: Bradley Hand ITC; font-size: 12pt; color: red}
  286.  
  287. </style>
  288. <center>
  289. <img src="http://i.imgur.com/8TtnhOo.jpg" width="0" height="0">
  290. <div id="example1">
  291. <p id="example2">
  292.  
  293.  
  294. <h3 align="center"><font size="4"face="Orbitron" style="background: url(&quot;http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif&quot;) repeat scroll 0% 0% transparent; color:white;text-shadow: 0 0 0.3em aqua,0 0 0.3em aqua"><b> -=[ We Are Empty Hacker Group ]=- </b></font></h3>
  295. </font></p><hr size="2" width="50%" color="#424242" align="center"><font size="2" face="Orbitron" color="#585858">
  296. <div align=center >
  297. <fieldset style="border: 2px dashed rgb(69, 69, 69); padding: 4px;width:500px;bgcolor:white;align:center;font-family:tahoma;font-size:10pt;border-color:#fff; text-shadow: rgb(0, 46, 255) 0px 0px 6px, rgb(3, 44, 254) 0px 0px 5px, rgb(9, 44, 255) 0px 0px 5px;">
  298.  
  299. <div>
  300. <img src="http://img.webme.com/pic/c/crapware/210k0lu.gif" width="100" height="50">
  301. <br><font size="4" face="Orbitron" style="background: url(&quot;http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif&quot;) repeat scroll 0% 0% transparent; color:#fff; text-shadow: rgb(0, 46, 255) 0px 0px 6px, rgb(3, 44, 254) 0px 0px 5px, rgb(9, 44, 255) 0px 0px 5px;">- Hello Website Master -<br> Your Security is not strong, please path it again. <br>We just have warning you like this! <br>Good Bye! EHG see you again </font>
  302. <br>
  303. <br>
  304. <br></font></font></div></center><script>
  305.  
  306. </script><font size="4" face="Orbitron" color="#585858">
  307. <script>jsbinShowEdit({"root":"http://static.jsbin.com","csrf":"RccJe4f1JegSj7TRvxsAQB+L"});</script>
  308. <script src="http://vnog.esy.es/js/vendor/eventsource.js"></script>
  309. <script src="http://vnog.esy.es/js/spike.js"></script>
  310. <script>
  311. var _gaq = _gaq || [];
  312. _gaq.push(['_setAccount', 'UA-1656750-34']);
  313. _gaq.push(['_trackPageview']);
  314.  
  315. (function() {
  316. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  317. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  318. (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
  319. })();
  320. </script>
  321.  
  322. <script type="text/javascript">
  323. //Define first typing example:
  324. new TypingText(document.getElementById("example1"));
  325. //Define second typing example (use "slashing" cursor at the end):
  326. new TypingText(document.getElementById("example2"), 50, function(i){
  327. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  328. ar.length]; });
  329. //Type out examples:
  330. TypingText.runAll();
  331. </script>
  332. <!--
  333.  
  334. // PLAYER VARIABLES
  335.  
  336. var mp3snd = "http://maestrohack.ucoz.com/clubbed_to_death-matrix_soundtrack.mp3";
  337. var oggsnd = "home-sound.ogg";
  338.  
  339. document.write('<audio autoplay="autoplay">');
  340. document.write('<source src="'+mp3snd+'" type="audio/mpeg">');
  341. document.write('<source src="'+oggsnd+'" type="audio/ogg">');
  342. document.write('<bgsound src="'+mp3snd+'" loop="1">');
  343. document.write('</audio>');
  344.  
  345. //-->
  346.  
  347.  
  348.  
  349. <script language="JavaScript" type="text/javascript">
  350.  
  351.  
  352. <!--
  353. var rows=1; // must be an odd number
  354. var speed=10; // lower is faster
  355. var reveal=10; // between 0 and 2 only. The higher, the faster the word appears
  356. var effectalign="default" //enter "center" to center it.
  357. script language="JavaScript" type="text/javascript">
  358. <!--
  359.  
  360. // PLAYER VARIABLES
  361.  
  362. var mp3snd = "http://maestrohack.ucoz.com/clubbed_to_death-matrix_soundtrack.mp3";
  363. var oggsnd = "home-sound.ogg";
  364.  
  365. document.write('<audio autoplay="autoplay">');
  366. document.write('<source src="'+mp3snd+'" type="audio/mpeg">');
  367. document.write('<source src="'+oggsnd+'" type="audio/ogg">');
  368. document.write('<bgsound src="'+mp3snd+'" loop="1">');
  369. document.write('</audio>');
  370.  
  371. //-->
  372. </script>
  373. <center><img src="http://lal24.netii.net/empty%20group/nhay.gif"></center>
  374. <font face="Orbitron" style="color:white;text-shadow: 0 0 0.3em yellow,0 0 0.3em Yellow; z-index:900000">
  375. <b>Ký Tên:</b>
  376. <marquee width="50%" scrolldelay="20" scrollamount="2" direction="left" behavior="scroll">
  377. <font face="Orbitron" style="color:white;text-shadow: 0 0 1.9em Green,0 0 0.3em Green;">
  378. <b> Phần Này Ghi Gì Tùy Bạn =]] By Kul </b>
  379. </font></marquee>
  380. <center><img src="http://lal24.netii.net/empty%20group/nhay.gif"></center>
  381. <br>
  382. <h2><font face="Orbitron" style="color:Black;text-shadow: 0 0 0.3em aqua,0 0 0.3em aqua;"><b><font size=2><strong><p align="right">#Copyright 2013 Empty Hacker Group</b>
  383. <br>
  384. <object width="300" height="308"> <param name="movie" value="http://www.nhaccuatui.com/m/mxDY5rEKbiDY" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="allowscriptaccess" value="always" /> <param name="flashvars" value="autostart=true" /> <embed src="http://www.nhaccuatui.com/m/mxDY5rEKbiDY" flashvars="target=blank&autostart=true" allowscriptaccess="always" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="1" height="1"></embed></object>
  385. <table width="100%" border="0" cellpadding="15" cellspacing="0"><tr><td><div id="flip" style="float:right;">
  386. <script type="text/javascript">
  387. var trailimage=["http://4.bp.blogspot.com/-c8MIH-CPLTo/T8_3iyPH0YI/AAAAAAAAbKQ/Oz4RfAC57CI/s1600/Vietnam-240-animated-flag-gifs.gif", 100, 60]
  388. var offsetfrommouse=[-5,20]
  389. var displayduration=0
  390. if (document.getElementById || document.all)
  391. document.write('<div id="trailimageid" style="position:absolute;visibility:visible;left:0px;top:0px;width:1px;height:1px"><img src="'+trailimage[0]+'" border="0" width="'+trailimage[1]+'px" height="'+trailimage[2]+'px"></div>')
  392.  
  393. function gettrailobj(){
  394. if (document.getElementById)
  395. return document.getElementById("trailimageid").style
  396. else if (document.all)
  397. return document.all.trailimagid.style
  398. }
  399.  
  400. function truebody(){
  401. return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
  402. }
  403.  
  404. function hidetrail(){
  405. gettrailobj().visibility="hidden"
  406. document.onmousemove=""
  407.  
  408. }
  409.  
  410. function followmouse(e){
  411. var xcoord=offsetfrommouse[0]
  412. var ycoord=offsetfrommouse[1]
  413. if (typeof e != "undefined"){
  414. xcoord+=e.pageX
  415. ycoord+=e.pageY
  416. }
  417. else if (typeof window.event !="undefined"){
  418. xcoord+=truebody().scrollLeft+event.clientX
  419. ycoord+=truebody().scrollTop+event.clientY
  420. }
  421. var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15
  422. var docheight=document.all? Math.max(truebody().scrollHeight, truebody().clientHeight) : Math.max(document.body.offsetHeight, window.innerHeight)
  423. if (xcoord+trailimage[1]+3>docwidth || ycoord+trailimage[2]> docheight)
  424. gettrailobj().display="none"
  425. else
  426. gettrailobj().display=""
  427. gettrailobj().left=xcoord+"px"
  428. gettrailobj().top=ycoord+"px"
  429. }
  430.  
  431. document.onmousemove=followmouse
  432.  
  433. if (displayduration>0)
  434. setTimeout("hidetrail()", displayduration*1000)
  435.  
  436. </script>
  437. <style>HTML,BODY{cursor: url("http://downloads.totallyfreecursors.com/cursor_files/fireblue.ani"), url("http://downloads.totallyfreecursors.com/thumbnails/fireblue.gif"), auto;}</style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement