Last active
October 16, 2021 06:56
-
-
Save pointofpresence/923313d33aef69886e16d6ed3739c274 to your computer and use it in GitHub Desktop.
PHP WWW Authenticate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$valid_passwords = array ("LOGIN" => "PASSWORD"); | |
$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]); | |
if (!$validated) { | |
header('WWW-Authenticate: Basic realm="My Realm"'); | |
header('HTTP/1.0 401 Unauthorized'); | |
die ("Not authorized"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment