Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.12 KB | None | 0 0
  1. <html>
  2. <title>Nguyen Thanh Hien</title>
  3. <link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png">
  4. <script type='text/javascript'>
  5. //<![CDATA[
  6. msg = "..::Kul Tan Binh::.. ";
  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="http://s1079.photobucket.com/user/raafi_teja/media/matrixright.gif">
  23.  
  24. </script>
  25.  
  26. <div id="matrix"><b>Công Thắngg's</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.
  68. this.finishedCallback element = element;
  69. = (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="http://4.bp.blogspot.com/-2h8LgjUDpzY/T0fTA4EQx8I/AAAAAAAAAtU/n_W5Vby8zLU/s400/hacked.gif" border="0"width="350px" height="60px">
  250.  
  251. <p id="message"><b> Website Has Been Hacker By Công Thắngg's 99</b><br>
  252. ===========================================
  253. <span style="color: green;">
  254. <b><br>Hacker....</b></font><span style="color: lime;">
  255. <br />
  256. <br> <b><br> - I am Công Thắngg's -
  257. <br> - Hacker VietNamese -</b>
  258. </font>
  259. <br />
  260. <br>
  261. <span style="color: Red;">
  262. <br><b> [ Shutdow ]</b><br></font>
  263. <center><img src=" http://fc02.deviantart.net/fs70/i/2013/360/5/6/angry_anon_background_template_by_wildsidesky-d6zhc94.jpg " border="0"width="550px" height="320px"></center>
  264.  
  265. </center>
  266. <center><embed width="700" height="40" align="middle" pluginspage="" type="application/x-shockwave-flash" wmode="transparent" quality="high" src="http://www.widgeo.net/effets/2.swf" flashvars="letter=Công Thắngg's ♥"></center>
  267.  
  268. <div style="text-shadow: 0px 0px 5px red;">
  269. <span style="color: white;">
  270. <b>Special Thanks To : </b><marquee scrollamount="10" direction="left" width="50%">Chung Toi Khong Phai La Boss...Khong Phai Hacker...Nhung Do La Dam Me Cua Toi...
  271.  
  272. <script type="text/javascript">/*<![CDATA[*/
  273.  
  274. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  275.  
  276. ar[i.length % ar.length]; });
  277.  
  278.  
  279. //Type out examples:
  280.  
  281. TypingText.runAll();
  282.  
  283. /*]]>*/</script>
  284. <center><img src="http://www.123myip.co.uk/ip-address/?size=468x60" /> <br />
  285. <object width="30" height="30"> <param name="movie" value="http://www.nhaccuatui.com/m/dFD1SME3qXhi" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="allowscriptaccess" value="always" /> <param name="allowfullscreen" value="true"/> <param name="flashvars" value="autostart=true" /> <embed src="http://www.nhaccuatui.com/m/dFD1SME3qXhi" flashvars="target=blank&autostart=true" allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="30" height="30"></embed></object>
  286.  
  287.  
  288.  
  289.  
  290. </body>
  291. <pre style="font: 20px/10px courier;"><b><script language="JavaScript1.2">
  292.  
  293. var message="Hacked By Công Thắngg's"
  294. var neonbasecolor="gray"
  295. var neontextcolor="white"
  296. var neontextcolor2="#FFFFA8"
  297. var flashspeed=100 // speed of flashing in milliseconds
  298. var flashingletters=3 // number of letters flashing in neontextcolor
  299. var flashingletters2=1 // number of letters flashing in neontextcolor2 (0 to disable)
  300. var flashpause=0 // the pause between flash-cycles in milliseconds
  301.  
  302. ///No need to edit below this line/////
  303.  
  304. var n=0
  305. if (document.all||document.getElementById){
  306. document.write('<font color="'+neonbasecolor+'">')
  307. for (m=0;m<message.length;m++)
  308. document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
  309. document.write('</font>')
  310. }
  311. else
  312. document.write(message)
  313.  
  314. function crossref(number){
  315. var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
  316. return crossobj
  317. }
  318.  
  319.  
  320. function neon(){
  321.  
  322. //Change all letters to base color
  323. if (n==0){
  324. for (m=0;m<message.length;m++)
  325. crossref(m).style.color=neonbasecolor
  326. }
  327. //cycle through and change individual letters to neon color
  328.  
  329. crossref(n).style.color=neontextcolor
  330.  
  331. if (n>flashingletters-1) crossref(n-flashingletters).style.color=neontextcolor2
  332. if (n>(flashingletters+flashingletters2)-1) crossref(n-flashingletters-flashingletters2).style.color=neonbasecolor
  333.  
  334.  
  335. if (n<message.length-1)
  336. n++
  337. else{
  338. n=0
  339. clearInterval(flashing)
  340. setTimeout("beginneon()",flashpause)
  341. return
  342. }
  343. }
  344.  
  345. function beginneon(){
  346. if (document.all||document.getElementById)
  347. flashing=setInterval("neon()",flashspeed)
  348. }
  349. beginneon()
  350.  
  351. </script></b></pre>
  352. </div>
  353. <script type="text/javascript">$(document).ready(function() {$(".facebookbox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);});
  354. </script><style type="text/css">.facebookbox{background:url("http://cdn1.iconfinder.com/data/icons/inside/PNG/048x048/icontexto-inside-facebook.png") no-repeat scroll left center transparent!important;display:block;float:right;height:270px;padding:0 5px 0 46px;width:245px;z-index:99999;position:fixed;right:-250px;top:40%;}.facebookbox div{border:none;position:relative;display:block;}.facebookbox span{bottom:12px;font:8px "lucida grande",tahoma,verdana,arial,sans-serif;position:absolute;right:6px;text-align:right;z-index:99999;}.facebookbox span a{color:#808080;text-decoration:none;}.facebookbox span a:hover{text-decoration:underline;}</style><div class="facebookbox">
  355. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement