X7ROOT File Manager
Current Path:
/var/softaculous/plikli
var
/
softaculous
/
plikli
/
ðŸ“
..
📄
approvedips.log
(13 B)
📄
clone.php
(6.56 KB)
📄
dbconnect.php
(246 B)
📄
edit.php
(4.54 KB)
📄
edit.xml
(433 B)
📄
extend.php
(9.47 KB)
📄
fileindex.php
(1.07 KB)
ðŸ“
images
📄
import.php
(3.45 KB)
📄
info.xml
(2.71 KB)
📄
install.js
(921 B)
📄
install.php
(5.48 KB)
📄
install.xml
(1.77 KB)
📄
lang_english.conf
(48.67 KB)
📄
md5
(1.17 KB)
📄
notes.txt
(948 B)
ðŸ“
php53
ðŸ“
php56
ðŸ“
php71
ðŸ“
php81
📄
settings.php
(222 B)
📄
update_pass.php
(660 B)
Editing: update_pass.php
<?php /** * A Compatibility library with PHP 5.5's simplified password hashing API. * * @author Anthony Ferrara <ircmaxell@php.net> * @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 '<update_pass>'.$resp1.'</update_pass>'; ?>
Upload File
Create Folder