Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../var/softacul.../goffice6
File: update_pass.php
<?php
[0] Fix | Delete
[1] Fix | Delete
if(function_exists('password_hash')){
[2] Fix | Delete
$resp = password_hash('[[admin_pass]]', PASSWORD_DEFAULT);
[3] Fix | Delete
echo '<update_pass>'.$resp.'</update_pass>';
[4] Fix | Delete
}else{
[5] Fix | Delete
[6] Fix | Delete
$salt = uniqid();
[7] Fix | Delete
[8] Fix | Delete
if(function_exists("mcrypt_create_iv")) {
[9] Fix | Delete
$salt = base64_encode(mcrypt_create_iv(24, MCRYPT_DEV_URANDOM));
[10] Fix | Delete
}
[11] Fix | Delete
if (CRYPT_SHA256 == 1) {
[12] Fix | Delete
$salt = '$5$'.$salt;
[13] Fix | Delete
}
[14] Fix | Delete
[15] Fix | Delete
$resp = crypt('[[admin_pass]]', $salt);
[16] Fix | Delete
echo '<update_pass>'.$resp.'</update_pass>';
[17] Fix | Delete
[18] Fix | Delete
}
[19] Fix | Delete
[20] Fix | Delete
@unlink('update_pass.php');
[21] Fix | Delete
?>
[22] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function