blob: c1e61ff835ceaba8214630a744810c563ecfbb73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
require_once __DIR__.'/../app/app.php';
require_once __DIR__.'/inc/auth.inc.php';
if ($csrf->verify($_POST['_csrf'], 'frmPassword') && isset($_POST['password']) && ('' != $_POST['password'])) {
$out = sprintf('<?php $login="admin"; $password="%s"; ?>', hash('sha256', $_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');
}
|