Advertisement
Guest User

sc

a guest
Oct 12th, 2017
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <html lang="en-US"><head>
  4. <title>[?]</title>
  5. <meta property="og:title" content="4LV1N_404 Was Here">
  6. <meta property="og:description" content="Why?">
  7. <meta property="og:author" content="">
  8.  
  9. <meta charset="UTF-8">
  10. <style>
  11. body {
  12. background-image:Url(http://3.bp.blogspot.com/-t5DDrsfOVaM/U4skcW5LsEI/AAAAAAAAKrg/BCQ2b3BRQ7Q/s1600/Gambar+Wallpaper+Hujan+Romantis+Sedih+Galau.png);
  13. margin: 0;
  14. padding: 0;
  15. text-align: center;
  16. background-size:cover
  17. }
  18. </style>
  19. <script language=JavaScript>
  20. <!--
  21.  
  22. //Disable right mouse click Script
  23. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  24. //For full source code, visit http://www.dynamicdrive.com
  25.  
  26. var message="kamu Jahat :'( ";
  27.  
  28. ///////////////////////////////////
  29. function clickIE4(){
  30. if (event.button==2){
  31. alert(message);
  32. return false;
  33. }
  34. }
  35.  
  36. function clickNS4(e){
  37. if (document.layers||document.getElementById&&!document.all){
  38. if (e.which==2||e.which==3){
  39. alert(message);
  40. return false;
  41. }
  42. }
  43. }
  44.  
  45. if (document.layers){
  46. document.captureEvents(Event.MOUSEDOWN);
  47. document.onmousedown=clickNS4;
  48. }
  49. else if (document.all&&!document.getElementById){
  50. document.onmousedown=clickIE4;
  51. }
  52.  
  53. document.oncontextmenu=new Function("alert(message);return false")
  54.  
  55. // -->
  56. </script>
  57. </head>
  58. <body>
  59. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  60. <embed src="http://www.youtube.com/v/KeE4Qi7OrVsS8WijEfNX0&autoplay=1" type="application/x-shockwave-flash"wmode="transparent" width="1" height="1">
  61. <br><br><br><br><a href="http://zone-h.org/archive/notifier=4LV1N_404"><font size="20" color="white" face="Courier New" style="text-shadow: 5px 0px 20px Blue;" >..:: Hacked by 4LV1N_404 ::..</font><br><br>
  62. <br><a href="https://www.facebook.com/gshofficialpageindonesia"><font size="13" color="white" face="Courier New" style="text-shadow: 5px 0px 20px Blue;" >Garuda Security Hacker</font></a><br><br>
  63.  
  64. <font face="Courier New" size="6" font style="text-shadow: 0px 0px 20px blue;" color="red"><br> Untukmu yg membuatku sakit sesakitsakitnya :') <br> </font>
  65. <script>
  66.  
  67. TypingText = function(element, interval, cursor, finishedCallback) {
  68.  
  69. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  70.  
  71. this.running = true; // Never run.
  72.  
  73. return;
  74.  
  75. }
  76.  
  77. this.element = element;
  78.  
  79. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  80.  
  81. this.interval = (typeof interval == "undefined" ? 100 : interval);
  82.  
  83. this.origText = this.element.innerHTML;
  84.  
  85. this.unparsedOrigText = this.origText;
  86.  
  87. this.cursor = (cursor ? cursor : "");
  88.  
  89. this.currentText = "";
  90.  
  91. this.currentChar = 0;
  92.  
  93. this.element.typingText = this;
  94.  
  95. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  96.  
  97. TypingText.all.push(this);
  98.  
  99. this.running = false;
  100.  
  101. this.inTag = false;
  102.  
  103. this.tagBuffer = "";
  104.  
  105. this.inHTMLEntity = false;
  106.  
  107. this.HTMLEntityBuffer = "";
  108.  
  109. }
  110.  
  111. TypingText.all = new Array();
  112.  
  113. TypingText.currentIndex = 0;
  114.  
  115. TypingText.runAll = function() {
  116.  
  117. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  118.  
  119. }
  120.  
  121. TypingText.prototype.run = function() {
  122.  
  123. if(this.running) return;
  124.  
  125. if(typeof this.origText == "undefined") {
  126.  
  127. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  128.  
  129. return;
  130.  
  131. }
  132.  
  133. if(this.currentText == "") this.element.innerHTML = "";
  134.  
  135. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  136.  
  137. if(this.currentChar < this.origText.length) {
  138.  
  139. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  140.  
  141. this.tagBuffer = "<";
  142.  
  143. this.inTag = true;
  144.  
  145. this.currentChar++;
  146.  
  147. this.run();
  148.  
  149. return;
  150.  
  151. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  152.  
  153. this.tagBuffer += ">";
  154.  
  155. this.inTag = false;
  156.  
  157. this.currentText += this.tagBuffer;
  158.  
  159. this.currentChar++;
  160.  
  161. this.run();
  162.  
  163. return;
  164.  
  165. } else if(this.inTag) {
  166.  
  167. this.tagBuffer += this.origText.charAt(this.currentChar);
  168.  
  169. this.currentChar++;
  170.  
  171. this.run();
  172.  
  173. return;
  174.  
  175. } else 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 = false;
  192.  
  193. this.currentText += this.HTMLEntityBuffer;
  194.  
  195. this.currentChar++;
  196.  
  197. this.run();
  198.  
  199. return;
  200.  
  201. } else if(this.inHTMLEntity) {
  202.  
  203. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  204.  
  205. this.currentChar++;
  206.  
  207. this.run();
  208.  
  209. return;
  210.  
  211. } else {
  212.  
  213. this.currentText += this.origText.charAt(this.currentChar);
  214.  
  215. }
  216.  
  217. this.element.innerHTML = this.currentText;
  218.  
  219. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  220.  
  221. this.currentChar++;
  222.  
  223. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  224.  
  225. } else {
  226.  
  227. this.currentText = "";
  228.  
  229. this.currentChar = 0;
  230.  
  231. this.running = false;
  232.  
  233. this.finishedCallback();
  234.  
  235. }
  236.  
  237. }
  238.  
  239. </script>
  240.  
  241. <p id="info"><font face="Courier New" color="White" size="4" style="text-shadow: 5px 0px 20px magenta;">
  242. Tuhan menciptakan makhluknya dengan berpasang-pasangan<br>
  243. dan aku berfikir kamu diciptakan hanya untukku.<br>
  244. Tapi entah, saat itu kau berubah kepadaku <br>
  245. Aku tidak tahu kesalahan apa yang telah kuperbuat <br>
  246. ..........................<br>
  247. Aku hanya ingin mengatakan <br>
  248. Ku tak akan mengganggumu lagi :) aku janji <br>
  249. karena kau sudah menemukan yang lebih baik dariku :) <br>
  250. terima kasih atas waktu yang kau luangkan kepadaku. :) <br>
  251. Biarkan semuanya menjadi cerita :) <br>
  252. Sampai nanti kelak esok kan kembali ini tentang kita , <br>
  253. Tentang bagaimana cara kita mampu melangkah tanpa alasan yang sama <br>
  254. Dan sadari... Kini nafasmu pun tak seirama denyut nadiku <br>
  255. Amat dalam ku terjatuh Hingga kau pun berlabuh di arti ujung jalanku...<br>
  256. <br>
  257. <font color="red">==============[Semoga Kau Bahagia]=============</font>
  258. </font></p>
  259. <center><br><br><font color="red">4LV1N_404</font></center>
  260. <script type="text/javascript">
  261.  
  262. //Define first typing example:
  263.  
  264. //Define second typing example (use "slashing" cursor at the end):
  265.  
  266. new TypingText(document.getElementById("info"), 70, function(i){
  267.  
  268. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  269.  
  270. ar.length]; });
  271.  
  272. //Type out examples:
  273.  
  274. TypingText.runAll();
  275.  
  276. </script></br>
  277. </body>
  278. </html>a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement