Skip to content

Instantly share code, notes, and snippets.

@paulrichards19
Created March 5, 2012 16:06
Show Gist options
  • Save paulrichards19/1979036 to your computer and use it in GitHub Desktop.
Save paulrichards19/1979036 to your computer and use it in GitHub Desktop.
Basic Auth for PHP
<?php
// Realm
$realm = 'Restricted area ';
//Passwords
$users = array('admin' => 'password');
if (empty($_SERVER['PHP_AUTH_DIGEST'])) {
send_auth_headers( $realm );
// if someone hits the cancel button
die('Restricted Area');
}
// analyze the PHP_AUTH_DIGEST variable
//var_dump( $_SERVER['PHP_AUTH_DIGEST'] );
if (!($data = http_digest_parse($_SERVER['PHP_AUTH_DIGEST'])) ||
!isset($users[$data['username']])){
send_auth_headers( $realm );
die('Wrong username or password! 1');
}
// generate the valid response
$A1 = md5($data['username'] . ':' . $realm . ':' . $users[$data['username']]);
$A2 = md5($_SERVER['REQUEST_METHOD'].':'.$data['uri']);
$valid_response = md5($A1.':'.$data['nonce'].':'.$data['nc'].':'.$data['cnonce'].':'.$data['qop'].':'.$A2);
if ($data['response'] != $valid_response){
send_auth_headers( $realm );
die('Wrong username or password!');
}
// ok, valid username & password
//echo 'You are logged in as: ' . $data['username'];
function send_auth_headers( $realm ){
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Digest realm="'.$realm.
'",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');
}
// function to parse the http auth header
function http_digest_parse($txt)
{
// protect against missing data
$needed_parts = array('nonce'=>1, 'nc'=>1, 'cnonce'=>1, 'qop'=>1, 'username'=>1, 'uri'=>1, 'response'=>1);
$data = array();
$keys = implode('|', array_keys($needed_parts));
preg_match_all('@(' . $keys . ')=(?:([\'"])([^\2]+?)\2|([^\s,]+))@', $txt, $matches, PREG_SET_ORDER);
foreach ($matches as $m) {
$data[$m[1]] = $m[3] ? $m[3] : $m[4];
unset($needed_parts[$m[1]]);
}
return $needed_parts ? false : $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment