Linux server1.sbs.cy 5.14.0-362.18.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jan 29 07:05:48 EST 2024 x86_64
Apache
: 199.192.25.12 | : 172.70.100.5
28 Domain
8.1.31
administrator
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
var /
softaculous /
admidio /
[ 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
clone.php
6.33
KB
-rw-r--r--
config.php
1.39
KB
-rw-r--r--
edit.php
4.61
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
3.31
KB
-rw-r--r--
fileindex.php
132
B
-rw-r--r--
import.php
4.11
KB
-rw-r--r--
info.xml
2.88
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
4.78
KB
-rw-r--r--
install.xml
28.64
KB
-rw-r--r--
md5
1.4
KB
-rw-r--r--
notes.txt
440
B
-rw-r--r--
update_pass.php
2.02
KB
-rw-r--r--
upgrade.php
4.64
KB
-rw-r--r--
upgrade.xml
363
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update_pass.php
<?php @unlink('update_pass.php'); $options = array('cost' => 10); $gPasswordHashAlgorithm = 'DEFAULT'; define('HASH_ALGORITHM_DEFAULT','DEFAULT'); define('HASH_ALGORITHM_ARGON2ID','ARGON2ID'); define('HASH_ALGORITHM_ARGON2I','ARGON2I'); define('HASH_ALGORITHM_BCRYPT','BCRYPT'); define('HASH_ALGORITHM_SHA512','SHA512'); define('HASH_INDICATOR_SHA512','$6$'); define('HASH_COST_SHA512_DEFAULT',100000); define('HASH_COST_SHA512_MIN',25000); define('HASH_COST_BCRYPT_DEFAULT',PASSWORD_BCRYPT_DEFAULT_COST); define('HASH_COST_BCRYPT_MIN',8); function __hash($password, $algorithm = HASH_ALGORITHM_DEFAULT, array $options = array()) { $options = __getPreparedOptions($algorithm, $options); switch ($algorithm) { case HASH_ALGORITHM_DEFAULT: $algorithmPhpConstant = PASSWORD_DEFAULT; break; case HASH_ALGORITHM_ARGON2ID: $algorithmPhpConstant = PASSWORD_ARGON2ID; break; case HASH_ALGORITHM_ARGON2I: $algorithmPhpConstant = PASSWORD_ARGON2I; break; case HASH_ALGORITHM_BCRYPT: $algorithmPhpConstant = PASSWORD_BCRYPT; break; case HASH_ALGORITHM_DEFAULT: $algorithmPhpConstant = PASSWORD_DEFAULT; break; case HASH_ALGORITHM_SHA512: $salt = '[[salt]]'; return crypt($password, HASH_INDICATOR_SHA512 . 'rounds=' . $options['cost'] . '$' . $salt . '$'); default: $algorithmPhpConstant = PASSWORD_DEFAULT; } return password_hash($password, $algorithmPhpConstant, $options); } function __getPreparedOptions($algorithm, array $options) { if ($algorithm === HASH_ALGORITHM_SHA512) { $defaultCost = HASH_COST_SHA512_DEFAULT; $minCost = HASH_COST_SHA512_MIN; } elseif ($algorithm === HASH_ALGORITHM_BCRYPT || ($algorithm === HASH_ALGORITHM_DEFAULT && PASSWORD_DEFAULT === PASSWORD_BCRYPT)) { $defaultCost = HASH_COST_BCRYPT_DEFAULT; $minCost = HASH_COST_BCRYPT_MIN; } else { $options['cost'] = null; return $options; } $options = array('cost' => 10); return $options; } $resp = __hash('[[admin_pass]]', $gPasswordHashAlgorithm, $options); echo '<update_pass>'.$resp.'</update_pass>'; ?>
Close