PATH:
home
/
lab2454c
/
credityork.com
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
intervention
/
httpauth
/
src
/
Token
<?php namespace Intervention\HttpAuth\Token; class RedirectHttpAuthorization extends HttpAuthentification { /** * Parse environment variables and store value in object * * @return bool "true" if value was found or "false" */ protected function parse(): bool { $value = $this->getArrayValue($_SERVER, 'REDIRECT_HTTP_AUTHORIZATION'); if (strtolower(substr($value, 0, 5)) === 'basic') { $this->value = $value; return true; } return false; } }
[-] NullToken.php
[edit]
[-] PhpAuthDigest.php
[edit]
[+]
..
[-] HttpAuthorization.php
[edit]
[-] HttpAuthentification.php
[edit]
[-] PhpAuthUser.php
[edit]
[-] RedirectHttpAuthorization.php
[edit]