summaryrefslogtreecommitdiffstats
path: root/common/admin/changepassword.php
blob: 3b4500e47b028d6e104d5460f4bf919c7b85957b (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 = '<?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');
}