blob: 4219e2c72d13356dd0ef7887e9dc6a3bb992f10d [file] [log] [blame]
<?php
require '../credentials.php';
require 'utils.php';
// Set the 'user' POST and COOKIE variable
$user = '';
if (isset($_POST['user'])) $user = $_POST['user'];
else if (isset($_COOKIE['user'])) $user = $_COOKIE['user'];
else {
header("Location: ../index.php");
die();
}
// Check if password is correct
$query_password = "SELECT password FROM users WHERE id=".$user;
$real_password = query($query_password)->fetch_row()[0];
// Prioritize input rather than memory
$password = '';
if (isset($_POST['password'])) $password = $_POST['password'];
else if (isset($_COOKIE['password'])) $password = $_COOKIE['password'];
// Redirect if wrong
if ($real_password != "" && $real_password != md5($password)) {
header("Location: ../index.php?wrongpassword=1");
die();
}
// Save variables as cookies
setcookie('user', $user, time() + (86400 * 10), "/");
if ($real_password != "") setcookie('password', $password, time() + (86400 * 10), "/");
else setcookie('password', '', -1, "/");
// Success, proceed to main page
header("Location: ../main.php");
?>