mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
2b03fa316d
Signed-off-by: D9ping <D9ping@users.noreply.github.com>
12 lines
311 B
PHP
Executable file
12 lines
311 B
PHP
Executable file
<?php
|
|
$user = $_SERVER['PHP_AUTH_USER'];
|
|
$pass = $_SERVER['PHP_AUTH_PW'];
|
|
|
|
$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");
|
|
}
|
|
|