summaryrefslogtreecommitdiff
path: root/includes/inc_auth.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/inc_auth.php')
-rwxr-xr-xincludes/inc_auth.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/includes/inc_auth.php b/includes/inc_auth.php
deleted file mode 100755
index 1545b7c..0000000
--- a/includes/inc_auth.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-global $user, $pass;
-
-session_start();
-
-if (isset($_COOKIE['istream']))
-{
- if(sha1($pass) == $_COOKIE['istream'] ) {
- setcookie ("istream", sha1($pass), time()+60*60*24*30);
- $authorized = true;
- } else {
- $authorised = false;
- }
-}
-
-# checkup login and password
-if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW']))
-{
- if (($user == $_SERVER['PHP_AUTH_USER']) && ($pass == ($_SERVER['PHP_AUTH_PW'])) )
- {
- setcookie ("istream", sha1($pass), time()+60*60*24*30);
- $authorized = true;
- }
-}
-
-# login
-if (!$authorized)
-{
- header('WWW-Authenticate: Basic Realm="Login please"');
- header('HTTP/1.0 401 Unauthorized');
- echo "Login";
- exit;
-}
-
-?>