adminvietnam

code làm web hacker

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