Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
cai /
system /
Encryption /
Handlers /
[ HOME SHELL ]
Name
Size
Permission
Action
BaseHandler.php
1.83
KB
-rwxr-x--x
OpenSSLHandler.php
2.74
KB
-rwxr-x--x
SodiumHandler.php
3.39
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : OpenSSLHandler.php
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\Encryption\Handlers; use CodeIgniter\Encryption\Exceptions\EncryptionException; /** * Encryption handling for OpenSSL library */ class OpenSSLHandler extends BaseHandler { /** * HMAC digest to use * * @var string */ protected $digest = 'SHA512'; /** * Cipher to use * * @var string */ protected $cipher = 'AES-256-CTR'; /** * Starter key * * @var string */ protected $key = ''; /** * {@inheritDoc} */ public function encrypt($data, $params = null) { // Allow key override if ($params) { $this->key = is_array($params) && isset($params['key']) ? $params['key'] : $params; } if (empty($this->key)) { throw EncryptionException::forNeedsStarterKey(); } // derive a secret key $secret = \hash_hkdf($this->digest, $this->key); // basic encryption $iv = ($ivSize = \openssl_cipher_iv_length($this->cipher)) ? \openssl_random_pseudo_bytes($ivSize) : null; $data = \openssl_encrypt($data, $this->cipher, $secret, OPENSSL_RAW_DATA, $iv); if ($data === false) { throw EncryptionException::forEncryptionFailed(); } $result = $iv . $data; $hmacKey = \hash_hmac($this->digest, $result, $secret, true); return $hmacKey . $result; } /** * {@inheritDoc} */ public function decrypt($data, $params = null) { // Allow key override if ($params) { $this->key = is_array($params) && isset($params['key']) ? $params['key'] : $params; } if (empty($this->key)) { throw EncryptionException::forNeedsStarterKey(); } // derive a secret key $secret = \hash_hkdf($this->digest, $this->key); $hmacLength = self::substr($this->digest, 3) / 8; $hmacKey = self::substr($data, 0, $hmacLength); $data = self::substr($data, $hmacLength); $hmacCalc = \hash_hmac($this->digest, $data, $secret, true); if (! hash_equals($hmacKey, $hmacCalc)) { throw EncryptionException::forAuthenticationFailed(); } if ($ivSize = \openssl_cipher_iv_length($this->cipher)) { $iv = self::substr($data, 0, $ivSize); $data = self::substr($data, $ivSize); } else { $iv = null; } return \openssl_decrypt($data, $this->cipher, $secret, OPENSSL_RAW_DATA, $iv); } }
Close