Advertisement
Guest User

Nguyễn Thành Hiền

a guest
Nov 27th, 2014
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.12 KB | None | 0 0
  1.  
  2. <html>
  3. <title>Nguyen Thanh Hien</title>
  4. <link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png">
  5. <script type='text/javascript'>
  6. //<![CDATA[
  7. msg = "..::Kul Tan Binh::.. ";
  8. msg = ".:Please patch your system:." + msg;pos = 0;
  9. function scrollMSG() {
  10. document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
  11. if (pos > msg.length) pos = 0
  12. window.setTimeout("scrollMSG()",80);
  13. }
  14. scrollMSG();
  15. //]]></script>
  16. <script type='text/javascript'>
  17. var DADrightclicktheme = 'Dark';
  18. var DADrightclickimage = 'http://sphotos-h.ak.fbcdn.net/hphotos-ak-ash3/p206x206/14562_183874628425481_1378122133_n.jpg';</script>
  19. <script type='text/javascript' src="http://tuyulz-blogspot.googlecode.com/files/Anti%20Klik.js"> </script>
  20. <script type="text/javascript" src="http://cayunkatel.googlecode.com/files/rainbows.js"></script>
  21.  
  22. <style type="text/css">body {cursor:url("http://i45.tinypic.com/1o6cqx.png"),default}</style>
  23. <body background="http://s1079.photobucket.com/user/raafi_teja/media/matrixright.gif">
  24.  
  25. </script>
  26.  
  27. <div id="matrix"><b>Kul Tan Binh</b></div>
  28.  
  29.  
  30. <style type="text/css">body {
  31.  
  32. background: #000000;
  33.  
  34. font-family: Courier New;
  35.  
  36. color: #ff0000;
  37.  
  38. text-align: center;
  39.  
  40. }
  41.  
  42. a {
  43.  
  44. text-decoration:none;
  45.  
  46. color:
  47.  
  48. #ff0000;
  49.  
  50. }
  51.  
  52. </style>
  53.  
  54. <script type="text/javascript">/*<![CDATA[*/
  55.  
  56. TypingText = function(element, interval, cursor, finishedCallback) {
  57.  
  58. if((typeof document.getElementById ==
  59.  
  60. "undefined") || (typeof element.innerHTML == "undefined")) {
  61.  
  62. this.running = true;
  63.  
  64. return;
  65.  
  66. }
  67.  
  68. this.
  69. this.finishedCallback element = element;
  70. = (finishedCallback
  71.  
  72. ? finishedCallback : function() { return; });
  73.  
  74. this.interval = (typeof interval == "undefined" ? 100 : interval);
  75.  
  76. this.origText = this.element.innerHTML;
  77.  
  78. this.unparsedOrigText = this.origText;
  79.  
  80. this.cursor = (cursor ? cursor : "");
  81.  
  82. this.currentText = "";
  83.  
  84. this.currentChar = 0;
  85.  
  86. this.element.typingText = this;
  87.  
  88. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  89.  
  90. TypingText.all.push(this);
  91.  
  92. this.running = false;
  93.  
  94. this.inTag = false;
  95.  
  96. this.tagBuffer = "";
  97.  
  98. this.inHTMLEntity = false;
  99.  
  100. this.HTMLEntityBuffer = "";
  101.  
  102. }
  103.  
  104. TypingText.all = new Array();
  105.  
  106. TypingText.currentIndex = 0;
  107.  
  108. TypingText.runAll
  109.  
  110. = function() {
  111.  
  112. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  113.  
  114. }
  115.  
  116. TypingText.prototype.run = function() {
  117.  
  118. if(this.running) return;
  119.  
  120. if(typeof this.origText == "undefined") {
  121.  
  122. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  123.  
  124. return;
  125.  
  126. }
  127.  
  128. if(this.currentText == "") this.element.innerHTML = "";
  129.  
  130. if(this.currentChar < this.origText.length) {
  131.  
  132. if(this.origText.charAt(this.currentChar) == "<" &&
  133.  
  134. !this.inTag) {
  135.  
  136. this.tagBuffer = "<";
  137.  
  138. this.inTag = true;
  139.  
  140. this.currentChar++;
  141.  
  142. this.run();
  143.  
  144. return;
  145.  
  146. } else if(this.origText.charAt(this.currentChar) == ">" &&
  147.  
  148. this.inTag) {
  149.  
  150. this.tagBuffer += ">";
  151.  
  152. this.inTag = false;
  153.  
  154. this.currentText += this.tagBuffer;
  155.  
  156. this.currentChar++;
  157.  
  158. this.run();
  159.  
  160. return;
  161.  
  162. } else
  163.  
  164. if(this.inTag) {
  165.  
  166. this.tagBuffer += this.origText.charAt(this.currentChar);
  167.  
  168. this.currentChar++;
  169.  
  170. this.run();
  171.  
  172. return;
  173.  
  174. } else
  175.  
  176. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  177.  
  178. this.HTMLEntityBuffer = "&";
  179.  
  180. this.inHTMLEntity = true;
  181.  
  182. this.currentChar++;
  183.  
  184. this.run();
  185.  
  186. return;
  187.  
  188. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  189.  
  190. this.HTMLEntityBuffer += ";";
  191.  
  192. this.inHTMLEntity =
  193.  
  194. false;
  195.  
  196. this.currentText += this.HTMLEntityBuffer;
  197.  
  198. this.currentChar++;
  199.  
  200. this.run();
  201.  
  202. return;
  203.  
  204. } else if(this.inHTMLEntity) {
  205.  
  206. this.HTMLEntityBuffer +=
  207.  
  208. this.origText.charAt(this.currentChar);
  209.  
  210. this.currentChar++;
  211.  
  212. this.run();
  213.  
  214. return;
  215.  
  216. } else {
  217.  
  218. this.currentText += this.origText.charAt(this.currentChar);
  219.  
  220. }
  221.  
  222. this.element.innerHTML = this.currentText;
  223.  
  224. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  225.  
  226. this.cursor(this.currentText) : this.cursor) : "");
  227.  
  228. this.currentChar++;
  229.  
  230. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  231.  
  232. this.interval);
  233.  
  234. } else {
  235.  
  236. this.currentText = "";
  237.  
  238. this.currentChar = 0;
  239.  
  240. this.running = false;
  241.  
  242. this.finishedCallback();
  243.  
  244. }
  245.  
  246. }
  247.  
  248.  
  249. /*]]>*/</script>
  250. <center><img src="http://4.bp.blogspot.com/-2h8LgjUDpzY/T0fTA4EQx8I/AAAAAAAAAtU/n_W5Vby8zLU/s400/hacked.gif" border="0"width="350px" height="60px">
  251.  
  252. <p id="message"><b> Website Has Been Hacker By Kul Tan Binh </b><br>
  253. ===========================================
  254. <span style="color: green;">
  255. <b><br>Hacker....</b></font><span style="color: lime;">
  256. <br />
  257. <br> <b><br> - I am Thanh Hien -
  258. <br> - Hacker VietNamese -</b>
  259. </font>
  260. <br />
  261. <br>
  262. <span style="color: Red;">
  263. <br><b> [ Shutdow ]</b><br></font>
  264. <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>
  265.  
  266. </center>
  267. <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=Nguyen Thanh Hien"></center>
  268.  
  269. <div style="text-shadow: 0px 0px 5px red;">
  270. <span style="color: white;">
  271. <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...
  272.  
  273. <script type="text/javascript">/*<![CDATA[*/
  274.  
  275. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  276.  
  277. ar[i.length % ar.length]; });
  278.  
  279.  
  280. //Type out examples:
  281.  
  282. TypingText.runAll();
  283.  
  284. /*]]>*/</script>
  285. <center><img src="http://www.123myip.co.uk/ip-address/?size=468x60" /> <br />
  286. <object width="30" height="30"> <param name="movie" value="http://www.nhaccuatui.com/m/NOOnKmw2YM" /> <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/nmy5xnXqMpMG" flashvars="target=blank&autostart=true" allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="30" height="30"></embed></object>
  287.  
  288.  
  289.  
  290.  
  291. </body>
  292. <pre style="font: 20px/10px courier;"><b><script language="JavaScript1.2">
  293.  
  294. var message="Hacked By Nguyen Thanh Hien - Kul Tan Binh"
  295. var neonbasecolor="gray"
  296. var neontextcolor="white"
  297. var neontextcolor2="#FFFFA8"
  298. var flashspeed=100 // speed of flashing in milliseconds
  299. var flashingletters=3 // number of letters flashing in neontextcolor
  300. var flashingletters2=1 // number of letters flashing in neontextcolor2 (0 to disable)
  301. var flashpause=0 // the pause between flash-cycles in milliseconds
  302.  
  303. ///No need to edit below this line/////
  304.  
  305. var n=0
  306. if (document.all||document.getElementById){
  307. document.write('<font color="'+neonbasecolor+'">')
  308. for (m=0;m<message.length;m++)
  309. document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
  310. document.write('</font>')
  311. }
  312. else
  313. document.write(message)
  314.  
  315. function crossref(number){
  316. var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
  317. return crossobj
  318. }
  319.  
  320.  
  321. function neon(){
  322.  
  323. //Change all letters to base color
  324. if (n==0){
  325. for (m=0;m<message.length;m++)
  326. crossref(m).style.color=neonbasecolor
  327. }
  328. //cycle through and change individual letters to neon color
  329.  
  330. crossref(n).style.color=neontextcolor
  331.  
  332. if (n>flashingletters-1) crossref(n-flashingletters).style.color=neontextcolor2
  333. if (n>(flashingletters+flashingletters2)-1) crossref(n-flashingletters-flashingletters2).style.color=neonbasecolor
  334.  
  335.  
  336. if (n<message.length-1)
  337. n++
  338. else{
  339. n=0
  340. clearInterval(flashing)
  341. setTimeout("beginneon()",flashpause)
  342. return
  343. }
  344. }
  345.  
  346. function beginneon(){
  347. if (document.all||document.getElementById)
  348. flashing=setInterval("neon()",flashspeed)
  349. }
  350. beginneon()
  351.  
  352. </script></b></pre>
  353. </div>
  354. <script type="text/javascript">$(document).ready(function() {$(".facebookbox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);});
  355. </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">
  356. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement