mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Add simple authentication
This commit is contained in:
17
includes/authenticate.php
Normal file
17
includes/authenticate.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
$valid_passwords = array ("admin" => "admin");
|
||||
$valid_users = array_keys($valid_passwords);
|
||||
|
||||
$user = $_SERVER['PHP_AUTH_USER'];
|
||||
$pass = $_SERVER['PHP_AUTH_PW'];
|
||||
|
||||
//$validated = (in_array($user, $valid_users)) && ($pass == $valid_passwords[$user]);
|
||||
$validated = ($user == $config['admin_user']) && password_verify($pass, $config['admin_pass']);
|
||||
|
||||
if (!$validated) {
|
||||
header('WWW-Authenticate: Basic realm="RaspAP"');
|
||||
header('HTTP/1.0 401 Unauthorized');
|
||||
die ("Not authorized");
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user