blob: 8c387692959a24e0e4f921b3e0859618c375ff5d (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
require_once __DIR__.'/inc/auth.inc.php';
if (isset($_POST['password']) && ('' != $_POST['password'])){
$out = '<?php $login="admin"; $password="'.md5($_POST['password']).'"; ?>';
file_put_contents(__DIR__.'/inc/pwd.inc.php', $out);
die("Password changed. <a href='administration.php'>Login</a>");
} else {
die('Can not change password');
}
|