summaryrefslogtreecommitdiffstats
path: root/common/admin/changepassword.php
diff options
context:
space:
mode:
Diffstat (limited to 'common/admin/changepassword.php')
-rw-r--r--common/admin/changepassword.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/admin/changepassword.php b/common/admin/changepassword.php
new file mode 100644
index 0000000..1fa505e
--- /dev/null
+++ b/common/admin/changepassword.php
@@ -0,0 +1,10 @@
+<?php
+require_once dirname(__FILE__).'/inc/auth.inc.php';
+
+if (isset($_POST['password']) && ('' != $_POST['password'])){
+ $out = '<?php $login="admin"; $password="'.md5($_POST['password']).'"; ?>';
+ file_put_contents(dirname(__FILE__).'/inc/pwd.inc.php', $out);
+ die("Password changed. <a href='administration.php'>Login</a>");
+} else {
+ die('Can not change password');
+}