Warning: Trying to access array offset on null in /var/www/alexvillarreal/wp-content/mu-plugins/index.php on line 2

Deprecated: md5(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/alexvillarreal/wp-content/mu-plugins/index.php on line 2
403WebShell
403Webshell
Server IP : 74.208.250.37  /  Your IP : 216.73.216.233
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64
User : miferval ( 1000)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/retoaventura/modules/send/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/retoaventura/modules/send/send.php
<?php
//echo 'send cargado';
//session_start();
if(isset($_POST['form_submit'])){
		$nombre=$_POST['nombre'];
		$email=$_POST['email'];
		$mensaje=$_POST['mensaje'];

			if($email !='' && $nombre !=''){$activate=true;}else{$activate=false;}

		
	//echo 'activating';
	if($activate){
		//echo '<br />activated';
include 'class.phpmailer.php';
//echo '<br />class setting';
$mail=new PHPMailer(); 
//echo '<br />class set'; //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch
//echo '<br />trying';

try {

			$message = '<p>Nombre: '. $nombre.'</p>
									<p>email: '. $email.'</p>
			            <p>mensaje: '. $mensaje.'</p>
									<p>IP: '.$_SERVER["REMOTE_ADDR"].'</p>';

	$mail->Body     =  "<br>" . $message;
	$mail->AltBody     =  $message;	
	$mail->From="Reto Aventura Web";
	$mail->Subject="Mensaje de Pagina Web";
	$mail->FromName="RetoAventura en Linea";
	$mail->AddAddress('gcasasdelagarza@gmail.com');
	$mail->AddBCC('miguelf@intercable.net');
	$mail->SetFrom($email, 'RetoAventura');
	
  $sent=$mail->Send();
  $sent = mail($to,$subject,$Body);
  if($sent)
{
	echo '<div class="success">Tu mensaje ha sido enviado</div>';
}
else
{echo '<div class="error_msg">No se pudo enviar el mensaje.</div>';}

} catch (phpmailerException $e) {
  echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
  echo $e->getMessage(); //Boring error messages from anything else!
}		

//echo '<p>'.$subject.'</p>'.$message.'<p>';	
}
else
{
	echo 'no activated';
	?>
<noscript>
<style>
		.noscript_message
		{
			position:absolute;
			top:5px;
			left:5px;
				-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.5);
background:#CCCCCC none repeat scroll 0 0;
display:block;
padding:4px;
color:#600;
		}
</style>
				
	</noscript>
	<?php
}
}
else echo 'no set orden_html';
?>

Youez - 2016 - github.com/yon3zu
LinuXploit