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.117.145.41
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 /
kusdde_tobedeleted /
adm /
adm_admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
pages
[ DIR ]
drwxr-xr-x
MainPage.js
23
KB
-rwxr-xr-x
MainPage2.js
1005
B
-rwxr-xr-x
admin.js
15.51
KB
-rwxr-xr-x
demo.js
3.32
KB
-rwxr-xr-x
forgot-password.js
520
B
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
registration.js
5.97
KB
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
sendMail.php
839
B
-rwxr-xr-x
sign-in.js
1.07
KB
-rwxr-xr-x
sign-up.js
2.83
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sendMail.php
<?php // If you are using Composer (recommended) //require 'vendor/autoload.php'; // If you are not using Composer require("sendgrid-php/lib/sendgrid-php.php"); error_reporting(E_ALL); ini_set('display_errors', 'on'); $from = new SendGrid\Email("Example User", "support@logisys.org"); $subject = "Sending with SendGrid is Fun"; $to = new SendGrid\Email("Example User", "prashanth.k@logisys.org"); $content = new SendGrid\Content("text/plain", "and easy to do anywhere, even with PHP"); $mail = new SendGrid\Mail($from, $subject, $to, $content); $apiKey = getenv('SENDGRID_API_KEY'); $apiKey = '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'; $sg = new \SendGrid($apiKey); $response = $sg->client->mail()->send()->post($mail); echo $response->statusCode(); print_r($response->headers()); echo $response->body();
Close