1 | <?php
|
---|
2 | session_start();
|
---|
3 | session_regenerate_id(true);
|
---|
4 |
|
---|
5 | // Rate limiting check (session-based)
|
---|
6 | if (isset($_SESSION['login_attempts']) && $_SESSION['login_attempts'] > 5) {
|
---|
7 | $timeout = 300; // 5 minutes timeout
|
---|
8 | if (time() - $_SESSION['last_attempt'] < $timeout) {
|
---|
9 | header("Location: /Sign&Log.php?error=TOO_MANY_ATTEMPTS");
|
---|
10 | exit();
|
---|
11 | } else {
|
---|
12 | $_SESSION['login_attempts'] = 0;
|
---|
13 | }
|
---|
14 | }
|
---|
15 |
|
---|
16 | // Input validation
|
---|
17 | if (empty($_POST['username']) || empty($_POST['password'])) {
|
---|
18 | header("Location: /Sign&Log.php?error=INVALID_CREDENTIALS");
|
---|
19 | exit();
|
---|
20 | }
|
---|
21 |
|
---|
22 | require 'connect.php';
|
---|
23 |
|
---|
24 | try {
|
---|
25 | $conn->beginTransaction();
|
---|
26 |
|
---|
27 | $username = trim(htmlspecialchars($_POST['username']));
|
---|
28 |
|
---|
29 | // Using stored procedure instead of direct query
|
---|
30 | $sql = "SELECT * FROM validate_login(:username)";
|
---|
31 | $stmt = $conn->prepare($sql);
|
---|
32 | $stmt->bindParam(':username', $username, PDO::PARAM_STR);
|
---|
33 | $stmt->execute();
|
---|
34 |
|
---|
35 | if ($stmt->rowCount() <= 0) {
|
---|
36 | $_SESSION['login_attempts'] = isset($_SESSION['login_attempts']) ? $_SESSION['login_attempts'] + 1 : 1;
|
---|
37 | $_SESSION['last_attempt'] = time();
|
---|
38 |
|
---|
39 | $conn->rollBack();
|
---|
40 | header("Location: /Sign&Log.php?error=INVALID_CREDENTIALS");
|
---|
41 | exit();
|
---|
42 | }
|
---|
43 |
|
---|
44 | $res = $stmt->fetch(PDO::FETCH_ASSOC);
|
---|
45 |
|
---|
46 | if (!password_verify($_POST['password'], $res['password'])) {
|
---|
47 | $_SESSION['login_attempts'] = isset($_SESSION['login_attempts']) ? $_SESSION['login_attempts'] + 1 : 1;
|
---|
48 | $_SESSION['last_attempt'] = time();
|
---|
49 |
|
---|
50 | $conn->rollBack();
|
---|
51 | header("Location: /Sign&Log.php?error=INVALID_CREDENTIALS");
|
---|
52 | exit();
|
---|
53 | }
|
---|
54 |
|
---|
55 | $conn->commit();
|
---|
56 |
|
---|
57 | // Session setup
|
---|
58 | $_SESSION['username'] = $username;
|
---|
59 | $_SESSION['userid'] = $res['userid'];
|
---|
60 | $_SESSION['role'] = $res['role'];
|
---|
61 | $_SESSION['last_activity'] = time();
|
---|
62 | $_SESSION['ip_address'] = $_SERVER['REMOTE_ADDR'];
|
---|
63 |
|
---|
64 | $_SESSION['login_attempts'] = 0;
|
---|
65 |
|
---|
66 | // Redirect based on role
|
---|
67 | if ($res['role'] == 'Admin') {
|
---|
68 | header("Location: ./Admin.php");
|
---|
69 | } else {
|
---|
70 | header("Location: ./HomePage.php");
|
---|
71 | }
|
---|
72 |
|
---|
73 | } catch (PDOException $e) {
|
---|
74 | $conn->rollBack();
|
---|
75 | error_log("Login error: " . $e->getMessage());
|
---|
76 | header("Location: /Sign&Log.php?error=SERVER_ERROR");
|
---|
77 | exit();
|
---|
78 | }
|
---|
79 | ?> |
---|