Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php http authentication

// Check auth:
if ($_SERVER['PHP_AUTH_USER']){
	echo "Authorized";
} else {
    header('HTTP/1.1 401 Unauthorized');
	echo "Unauthorized";
}
Comment

php authentication


<?php
$realm = 'Restricted area';

//user => password
$users = array('admin' => 'mypass', 'guest' => 'guest');


if (empty($_SERVER['PHP_AUTH_DIGEST'])) {
    header('HTTP/1.1 401 Unauthorized');
    header('WWW-Authenticate: Digest realm="'.$realm.
           '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');

    die('Text to send if user hits Cancel button');
}


// analyze the PHP_AUTH_DIGEST variable
if (!($data = http_digest_parse($_SERVER['PHP_AUTH_DIGEST'])) ||
    !isset($users[$data['username']]))
    die('Wrong Credentials!');


// 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)
    die('Wrong Credentials!');

// ok, valid username & password
echo 'You are logged in as: ' . $data['username'];


// 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;
}
?>

Comment

PREVIOUS NEXT
Code Example
Php :: wpdb get last query 
Php :: loop foreach laravel with number 
Php :: Remove All Spaces Out of a String in PHP 
Php :: json encode 
Php :: 1.0E-6 to decimal in php 
Php :: array key value php 
Php :: filter collection (laravel) 
Php :: php meta refresh 
Php :: laravel eloquent set timestamps values upon seed 
Php :: codeigniter update or create 
Php :: print in php 
Php :: how to get yearly chart in laravel 
Php :: Get all Country List using php 
Php :: php class extends exception 
Php :: how to redirect to another page after login in laravel 
Php :: Load differenet .env file in laravel 
Php :: difference between use and require in php 
Php :: php ip log 
Php :: how laravel return the old value 
Php :: Laravel: Set timestamp column to current timestamp 
Php :: laravel blade check if request url matches 
Php :: phpmyadmin centos 8 
Php :: php sprintf 
Php :: check if checkbox is not checked laravel 8 
Php :: php string search in array 
Php :: 413 error laravel 
Php :: qr code generator php 
Php :: codeigniter base_url 
Php :: laravel except method 
Php :: storepublicly laravel 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =