/var/softaculous/plikli
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
approvedips.log130644editdlrm
clone.php67140644editdlrm
dbconnect.php2460644editdlrm
edit.php46550644editdlrm
edit.xml4330644editdlrm
extend.php97530644editdlrm
fileindex.php10970644editdlrm
import.php35200644editdlrm
info.xml27750644editdlrm
install.js9210644editdlrm
install.php56440644editdlrm
install.xml18140644editdlrm
lang_english.conf498430644editdlrm
md532290644editdlrm
notes.txt9480644editdlrm
settings.php2220644editdlrm
update_pass.php6600644editdlrm
Edit: /var/softaculous/plikli/update_pass.php (660B)
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @copyright 2012 The Authors */ @unlink('update_pass.php'); if(!defined('PASSWORD_BCRYPT')){ define('PASSWORD_BCRYPT', 1); } define('PASSWORD_DEFAULT', PASSWORD_BCRYPT); define('SALT_LENGTH', 9); $salt = substr(md5(uniqid(rand(), true)), 0, SALT_LENGTH); $resp = 'bcrypt:' . $salt . password_hash(sha1($salt . '[[admin_pass]]'), PASSWORD_DEFAULT); $resp1 = str_replace("\$", "\\\$", $resp); echo ''.$resp1.''; ?>