Linux server123.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.126.127 | : 216.73.216.107
Cant Read [ /etc/named.conf ]
?8.4.14
ezdajrnh
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
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
admidio.sql
98.74
KB
-rw-r--r--
admidio.zip
14.57
MB
-rw-r--r--
clone.php
6.34
KB
-rw-r--r--
config.php
1.15
KB
-rw-r--r--
edit.php
4.61
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
3.3
KB
-rw-r--r--
fileindex.php
169
B
-rw-r--r--
import.php
4.21
KB
-rw-r--r--
info.xml
2.86
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
5.03
KB
-rw-r--r--
install.xml
28.1
KB
-rw-r--r--
md5
1.1
KB
-rw-r--r--
notes.txt
686
B
-rw-r--r--
update_pass.php
2.02
KB
-rw-r--r--
upgrade.php
6.01
KB
-rw-r--r--
upgrade.xml
346
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