<?php
$resp = __encrypt_password('[[admin_pass]]', '[[salt]]', '$2a$' . '12' . '$', '[[passwordsaltmain]]');
echo '<update_pass>'.$resp.'</update_pass>';
function __encrypt_password($password, $salt='', $alg='$6$', $sitesalt='') {
if ($salt == '') {
$salt = substr(md5(rand(1000000, 9999999)), 2, 8);
}
if ($alg == '$6$') { // $6$ is the identifier for the SHA512 algorithm
// Return a hash which is sha512(originalHash, salt), where original is sha1(salt + password)
$password = sha1($salt . $password);
// Generate a salt based on a supplied salt and the passwordsaltmain
$fullsalt = substr(md5($sitesalt . $salt), 0, 16); // SHA512 expects 16 chars of salt
}
else { // This is most likely bcrypt $2a$, but any other algorithm can take up to 22 chars of salt
// Generate a salt based on a supplied salt and the passwordsaltmain
$fullsalt = substr(md5($sitesalt . $salt), 0, 22); // bcrypt expects 22 chars of salt
}
$hash = crypt($password, $alg . $fullsalt);
// Strip out the computed salt
// We strip out the salt hide the computed salt (in case the sitesalt was used which isn't in the database)
$hash = substr($hash, 0, strlen($alg)) . substr($hash, strlen($alg)+strlen($fullsalt));
return $hash;
}
@unlink('update_pass.php');
?>
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| images | Folder | 0755 |
|
|
| php53 | Folder | 0755 |
|
|
| php56 | Folder | 0755 |
|
|
| php71 | Folder | 0755 |
|
|
| php81 | Folder | 0755 |
|
|
| php82 | Folder | 0755 |
|
|
| changelog.txt | File | 10.99 KB | 0644 |
|
| clone.php | File | 6.52 KB | 0644 |
|
| config.php | File | 3 KB | 0644 |
|
| edit.php | File | 5.4 KB | 0644 |
|
| edit.xml | File | 433 B | 0644 |
|
| fileindex.php | File | 509 B | 0644 |
|
| import.php | File | 3.31 KB | 0644 |
|
| info.xml | File | 4.74 KB | 0644 |
|
| install.js | File | 921 B | 0644 |
|
| install.php | File | 8.62 KB | 0644 |
|
| install.xml | File | 1.43 KB | 0644 |
|
| md5 | File | 4.4 KB | 0644 |
|
| mod_upgrade.php | File | 63.6 KB | 0644 |
|
| notes.txt | File | 2.18 KB | 0644 |
|
| org_upgrade.php | File | 63.57 KB | 0644 |
|
| update_pass.php | File | 1.23 KB | 0644 |
|
| upgrade.php | File | 6.37 KB | 0644 |
|
| upgrade.xml | File | 334 B | 0644 |
|