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.223.210.196
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 /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
code-clean.sh
569
B
-rw-r--r--
cron-curl.sh
66
B
-rw-r--r--
cron-lynx.sh
78
B
-rw-r--r--
drupal.sh
4.16
KB
-rw-r--r--
dump-database-d6.sh
2.89
KB
-rw-r--r--
dump-database-d7.sh
2.51
KB
-rw-r--r--
generate-d6-content.sh
6.65
KB
-rw-r--r--
generate-d7-content.sh
10.54
KB
-rw-r--r--
password-hash.sh
2.31
KB
-rwxr-xr-x
run-tests.sh
21.75
KB
-rw-r--r--
test.script
185
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : password-hash.sh
#!/usr/bin/php <?php /** * Drupal hash script - to generate a hash from a plaintext password * * Check for your PHP interpreter - on Windows you'll probably have to * replace line 1 with * #!c:/program files/php/php.exe * * @param password1 [password2 [password3 ...]] * Plain-text passwords in quotes (or with spaces backslash escaped). */ if (version_compare(PHP_VERSION, "5.2.0", "<")) { $version = PHP_VERSION; echo <<<EOF ERROR: This script requires at least PHP version 5.2.0. You invoked it with PHP version {$version}. \n EOF; exit; } $script = basename(array_shift($_SERVER['argv'])); if (in_array('--help', $_SERVER['argv']) || empty($_SERVER['argv'])) { echo <<<EOF Generate Drupal password hashes from the shell. Usage: {$script} [OPTIONS] "<plan-text password>" Example: {$script} "mynewpassword" All arguments are long options. --help Print this page. --root <path> Set the working directory for the script to the specified path. To execute this script this has to be the root directory of your Drupal installation, e.g. /home/www/foo/drupal (assuming Drupal running on Unix). Use surrounding quotation marks on Windows. "<password1>" ["<password2>" ["<password3>" ...]] One or more plan-text passwords enclosed by double quotes. The output hash may be manually entered into the {users}.pass field to change a password via SQL to a known value. To run this script without the --root argument invoke it from the root directory of your Drupal installation as ./scripts/{$script} \n EOF; exit; } $passwords = array(); // Parse invocation arguments. while ($param = array_shift($_SERVER['argv'])) { switch ($param) { case '--root': // Change the working directory. $path = array_shift($_SERVER['argv']); if (is_dir($path)) { chdir($path); } break; default: // Add a password to the list to be processed. $passwords[] = $param; break; } } define('DRUPAL_ROOT', getcwd()); include_once DRUPAL_ROOT . '/includes/password.inc'; include_once DRUPAL_ROOT . '/includes/bootstrap.inc'; foreach ($passwords as $password) { print("\npassword: $password \t\thash: ". user_hash_password($password) ."\n"); } print("\n");
Close