Skip to content

Instantly share code, notes, and snippets.

@Pooky
Created February 16, 2020 21:33
Show Gist options
  • Save Pooky/a13f748b200db2ac456878a4b9a96e16 to your computer and use it in GitHub Desktop.
Save Pooky/a13f748b200db2ac456878a4b9a96e16 to your computer and use it in GitHub Desktop.
PHP Info protected by password
<?php
/**
* PHP Info protected by password
* @author Pooky https://github.com/Pooky/
*/
$valid_passwords = array ("worker" => "secret");
$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");
}
phpinfo();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment