Back
Type Name Operations
images Open
languages Open
php53 Open
php56 Open
php71 Open
php81 Open
php82 Open
plugins Open
.htaccess
_htaccess
_index.php
_wp-config.php
add_user.php
backup.php
check_charset.php
clone.php
clone.xml
edit.php
edit.xml
extend.php
fileindex.php
import.php
info.xml
install.js
install.php
install.xml
md5
multisite.sql
notes.txt
plugin_activate.php
plugin_deactivate.php
post_download.json
sign_on.php
soft.htaccess
update_pass.php
upgrade.php
upgrade.xml
wp-cli
wp-config.php
wp.sql
wp.zip

File Transfer

Upload files to current directory

File Editor: update_pass.php

* @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); } if(!defined('PASSWORD_DEFAULT')){ define('PASSWORD_DEFAULT', PASSWORD_BCRYPT); } $password_to_hash = base64_encode( hash_hmac( 'sha384', '[[admin_pass]]', 'wp-sha384', true ) ); $resp = password_hash($password_to_hash, PASSWORD_BCRYPT); echo ''.'$wp' . $resp.''; ?>