summaryrefslogtreecommitdiffstats
path: root/admin/changepassword.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/changepassword.php')
-rw-r--r--admin/changepassword.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/changepassword.php b/admin/changepassword.php
index 3b4500e..c1e61ff 100644
--- a/admin/changepassword.php
+++ b/admin/changepassword.php
@@ -4,7 +4,7 @@ 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']).'"; ?>';
+ $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 {