default; if(isset($_COOKIE["lam_default_profile"]) && in_array($_COOKIE["lam_default_profile"], getConfigProfiles())) { $default_Profile = $_COOKIE["lam_default_profile"]; } // Reload loginpage after a profile change if(isset($_GET['useProfile'])) { logNewMessage(LOG_DEBUG, "Change server profile to " . $_GET['useProfile']); $_SESSION['config'] = new LAMConfig($_GET['useProfile']); // Recreate the config object with the submited } // Load login page elseif (!empty($default_Profile)) { $_SESSION["config"] = new LAMConfig($default_Profile); // Create new Config object } $_SESSION['language'] = $_SESSION["config"]->get_defaultLanguage(); if (isset($_POST['language'])) { $_SESSION['language'] = $_POST['language']; // Write selected language in session } $current_language = explode(":",$_SESSION['language']); $_SESSION['header'] = "\n\n"; $_SESSION['header'] .= "\n\n"; $_SESSION['header'] .= "\n"; $_SESSION['header'] .= "\n "; /** * Displays the login window. * * @param object $config_object current active configuration */ function display_LoginPage($config_object) { logNewMessage(LOG_DEBUG, "Display login page"); global $error_message; // generate 256 bit key and initialization vector for user/passwd-encryption // check if we can use /dev/urandom otherwise use rand() if(function_exists('mcrypt_create_iv')) { $key = @mcrypt_create_iv(32, MCRYPT_DEV_URANDOM); if (! $key) { srand((double)microtime()*1234567); $key = mcrypt_create_iv(32, MCRYPT_RAND); } $iv = @mcrypt_create_iv(32, MCRYPT_DEV_URANDOM); if (! $iv) { srand((double)microtime()*1234567); $iv = mcrypt_create_iv(32, MCRYPT_RAND); } // save both in cookie setcookie("Key", base64_encode($key), 0, "/"); setcookie("IV", base64_encode($iv), 0, "/"); } // loading available languages from language.conf file $languagefile = "../config/language"; if(is_file($languagefile) == True) { $file = fopen($languagefile, "r"); $i = 0; while(!feof($file)) { $line = fgets($file, 1024); if($line == "" || $line == "\n" || $line[0] == "#") continue; // ignore comment and empty lines $value = explode(":", $line); $languages[$i]["link"] = $value[0] . ":" . $value[1]; $languages[$i]["descr"] = $value[2]; if(trim($line) == trim($_SESSION["language"])) { $languages[$i]["default"] = "YES"; } else { $languages[$i]["default"] = "NO"; } $i++; } fclose($file); } $profiles = getConfigProfiles(); setlanguage(); // setting correct language echo $_SESSION["header"]; ?> LDAP Account Manager read(); while ($cssEntry !== false) { if (substr($cssEntry, strlen($cssEntry) - 4, 4) == '.css') { $cssFiles[] = $cssEntry; } $cssEntry = $cssDir->read(); } sort($cssFiles); foreach ($cssFiles as $cssEntry) { echo "\n"; } ?> read()) { if (substr($jsEntry, strlen($jsEntry) - 3, 3) != '.js') continue; $jsFiles[] = $jsEntry; } sort($jsFiles); foreach ($jsFiles as $jsEntry) { echo "\n"; } // upgrade if pdf/profiles contain single files if (containsFiles('../config/profiles') || containsFiles('../config/pdf')) { $result = testPermissions(); if (sizeof($result) > 0) { StatusMessage('ERROR', 'Unable to migrate configuration files. Please allow write access to these paths:', implode('
', $result)); } else { upgradeConfigToServerProfileFolders(getConfigProfiles()); StatusMessage('INFO', 'Config file migration finished.'); } } // copy any missing default profiles copyConfigTemplates(getConfigProfiles()); // set focus on password field if (!empty($config_object)) { echo "\n"; } ?>
 LDAP Account Manager  LDAP Account Manager configuration 


"; } } // check TLS if (!empty($config_object)) { $useTLS = $config_object->getUseTLS(); if (isset($useTLS) && ($useTLS == "yes")) { if (!function_exists('ldap_start_tls')) { StatusMessage("ERROR", "Your PHP installation does not support TLS encryption!"); echo "
"; } } } // check if session expired if (isset($_GET['expired'])) { StatusMessage("ERROR", _("Your session expired, please log in again.")); echo "
"; } // check if main config was saved if (isset($_GET['confMainSavedOk'])) { StatusMessage("INFO", _("Your settings were successfully saved.")); echo "
"; } // check if a server profile was saved if (isset($_GET['configSaveOk'])) { StatusMessage("INFO", _("Your settings were successfully saved."), htmlspecialchars($_GET['configSaveFile'])); echo "
"; } elseif (isset($_GET['configSaveFailed'])) { StatusMessage("ERROR", _("Cannot open config file!"), htmlspecialchars($_GET['configSaveFile'])); echo "
"; } // check if self service was saved if (isset($_GET['selfserviceSaveOk'])) { StatusMessage("INFO", _("Your settings were successfully saved."), htmlspecialchars($_GET['selfserviceSaveOk'])); echo "
"; } if (!empty($config_object)) { ?>

Logo
colspan = 3; $table->addElement($spacer, true); // user name $userLabel = new htmlOutputText(_("User name")); $userLabel->alignment = htmlElement::ALIGN_RIGHT; $table->addElement($userLabel); $gap = new htmlSpacer('5px', '30px'); $table->addElement($gap); if ($config_object->getLoginMethod() == LAMConfig::LOGIN_LIST) { $admins = $config_object->get_Admins(); $adminList = array(); for($i = 0; $i < count($admins); $i++) { $text = explode(",", $admins[$i]); $text = explode("=", $text[0]); $adminList[$text[1]] = $admins[$i]; } $userSelect = new htmlSelect('username', $adminList); $userSelect->setHasDescriptiveElements(true); $userSelect->alignment = htmlElement::ALIGN_LEFT; $table->addElement($userSelect); } else { if ($config_object->getHttpAuthentication() == 'true') { $httpAuth = new htmlOutputText($_SERVER['PHP_AUTH_USER']); $httpAuth->alignment = htmlElement::ALIGN_LEFT; $table->addElement($httpAuth); } else { $userInput = new htmlInputField('username'); $userInput->alignment = htmlElement::ALIGN_LEFT; $table->addElement($userInput); } } $table->addNewLine(); // password $passwordLabel = new htmlOutputText(_("Password")); $passwordLabel->alignment = htmlElement::ALIGN_RIGHT; $table->addElement($passwordLabel); $table->addElement($gap); if (($config_object->getLoginMethod() == LAMConfig::LOGIN_SEARCH) && ($config_object->getHttpAuthentication() == 'true')) { $passwordInputFake = new htmlOutputText('**********'); $passwordInputFake->alignment = htmlElement::ALIGN_LEFT; $table->addElement($passwordInputFake); } else { $passwordInput = new htmlInputField('passwd'); $passwordInput->alignment = htmlElement::ALIGN_LEFT; $passwordInput->setIsPassword(true); $passwordInput->setFieldSize('20px'); $table->addElement($passwordInput); } $table->addNewLine(); // language $languageLabel = new htmlOutputText(_("Language")); $languageLabel->alignment = htmlElement::ALIGN_RIGHT; $table->addElement($languageLabel); $table->addElement($gap); $languageList = array(); $defaultLanguage = array(); for($i = 0; $i < count($languages); $i++) { $languageList[$languages[$i]["descr"]] = $languages[$i]["link"] . ":" . $languages[$i]["descr"]; if($languages[$i]["default"] == "YES") { $defaultLanguage[] = $languages[$i]["link"] . ":" . $languages[$i]["descr"]; } } $languageSelect = new htmlSelect('language', $languageList, $defaultLanguage); $languageSelect->setHasDescriptiveElements(true); $languageSelect->alignment = htmlElement::ALIGN_LEFT; $table->addElement($languageSelect, true); // login button $table->addElement(new htmlSpacer(null, '35px')); $table->addElement(new htmlHiddenInput('checklogin', 'checklogin')); $loginButton = new htmlButton('submit', _("Login")); $loginButton->alignment = htmlElement::ALIGN_LEFT; $table->addElement($loginButton, true); // error message if($error_message != "") { $message = new htmlStatusMessage('ERROR', $error_message); $message->colspan = 3; $table->addElement($message, true); } $tabindex = 1; parseHtml(null, $table, array(), false, $tabindex, 'user'); ?>
colspan = 2; $table->addElement($line, true); $subTable = new htmlTable(); $subTable->alignment = htmlElement::ALIGN_LEFT; // LDAP server $serverLabel = new htmlOutputText(_("LDAP server")); $serverLabel->alignment = htmlElement::ALIGN_RIGHT; $subTable->addElement($serverLabel); $subTable->addElement($gap); $serverName = new htmlOutputText($config_object->get_ServerURL()); $serverName->alignment = htmlElement::ALIGN_LEFT; $subTable->addElement($serverName, true); // server profile $profileLabel = new htmlOutputText(_("Server profile")); $profileLabel->alignment = htmlElement::ALIGN_RIGHT; $subTable->addElement($profileLabel); $subTable->addElement($gap); $profileSelect = new htmlSelect('profile', $profiles, array($_SESSION['config']->getName())); $profileSelect->alignment = htmlElement::ALIGN_LEFT; $profileSelect->setOnchangeEvent('loginProfileChanged(this)'); $subTable->addElement($profileSelect, true); $subTable->addElement(new htmlSpacer(null, '10px')); $table->addElement($subTable); parseHtml(null, $table, array(), true, $tabindex, 'user'); ?>



" . _("Want more features? Get LAM Pro!") . ""; } ?>
getLoginMethod() == LAMConfig::LOGIN_SEARCH) && ($_SESSION['config']->getHttpAuthentication() == 'true')) { $username = $_SERVER['PHP_AUTH_USER']; $password = $_SERVER['PHP_AUTH_PW']; } else { if($_POST['passwd'] == "") { logNewMessage(LOG_DEBUG, "Empty password for login"); $error_message = _("Empty password submitted. Please try again."); display_LoginPage($_SESSION['config']); // Empty password submitted. Return to login page. exit(); } if (get_magic_quotes_gpc() == 1) { $_POST['passwd'] = stripslashes($_POST['passwd']); } $username = $_POST['username']; $password = $_POST['passwd']; } // search user in LDAP if needed if ($_SESSION['config']->getLoginMethod() == LAMConfig::LOGIN_SEARCH) { $searchFilter = $_SESSION['config']->getLoginSearchFilter(); $searchFilter = str_replace('%USER%', $username ,$searchFilter); $searchDN = ''; $searchPassword = ''; if (($_SESSION['config']->getLoginSearchDN() != null) && ($_SESSION['config']->getLoginSearchDN() != '')) { $searchDN = $_SESSION['config']->getLoginSearchDN(); $searchPassword = $_SESSION['config']->getLoginSearchPassword(); } $searchSuccess = true; $searchError = ''; $searchLDAP = new Ldap($_SESSION['config']); $searchLDAPResult = $searchLDAP->connect($searchDN, $searchPassword, true); if (! ($searchLDAPResult == 0)) { $searchSuccess = false; $searchError = _('Cannot connect to specified LDAP server. Please try again.') . ' ' . @ldap_error($searchLDAP->server()); } else { $searchResult = @ldap_search($searchLDAP->server(), $_SESSION['config']->getLoginSearchSuffix(), $searchFilter, array('dn'), 0, 0, 0, LDAP_DEREF_NEVER); if ($searchResult) { $searchInfo = @ldap_get_entries($searchLDAP->server(), $searchResult); if ($searchInfo) { cleanLDAPResult($searchInfo); if (sizeof($searchInfo) == 0) { $searchSuccess = false; $searchError = _('Wrong password/user name combination. Please try again.'); } elseif (sizeof($searchInfo) > 1) { $searchSuccess = false; $searchError = _('The given user name matches multiple LDAP entries.'); } else { $username = $searchInfo[0]['dn']; } } else { $searchSuccess = false; $searchError = _('Unable to find the user name in LDAP.'); if (ldap_errno($searchLDAP->server()) != 0) $searchError .= ' ' . ldap_error($searchLDAP->server()); } } else { $searchSuccess = false; $searchError = _('Unable to find the user name in LDAP.'); if (ldap_errno($searchLDAP->server()) != 0) $searchError .= ' ' . ldap_error($searchLDAP->server()); } } if (!$searchSuccess) { $error_message = $searchError; logNewMessage(LOG_ERR, 'User ' . $username . ' (' . $clientSource . ') failed to log in. ' . $searchError . ''); $searchLDAP->close(); display_LoginPage($_SESSION['config']); exit(); } $searchLDAP->close(); } // try to connect to LDAP $result = $_SESSION['ldap']->connect($username, $password); // Connect to LDAP server for verifing username/password if($result === 0) {// Username/password correct. Do some configuration and load main frame. $_SESSION['loggedIn'] = true; // set security settings for session $_SESSION['sec_session_id'] = session_id(); $_SESSION['sec_client_ip'] = $_SERVER['REMOTE_ADDR']; $_SESSION['sec_sessionTime'] = time(); // logging logNewMessage(LOG_NOTICE, 'User ' . $username . ' (' . $clientSource . ') successfully logged in.'); // Load main frame metaRefresh("./main.php"); die(); } else { if ($result === False) { // connection failed $error_message = _("Cannot connect to specified LDAP server. Please try again."); logNewMessage(LOG_ERR, 'User ' . $username . ' (' . $clientSource . ') failed to log in (LDAP error: ' . ldap_err2str($result) . ').'); } elseif ($result == 81) { // connection failed $error_message = _("Cannot connect to specified LDAP server. Please try again."); logNewMessage(LOG_ERR, 'User ' . $username . ' (' . $clientSource . ') failed to log in (LDAP error: ' . ldap_err2str($result) . ').'); } elseif ($result == 49) { // user name/password invalid. Return to login page. $error_message = _("Wrong password/user name combination. Please try again."); logNewMessage(LOG_ERR, 'User ' . $username . ' (' . $clientSource . ') failed to log in (wrong password).'); } else { // other errors $error_message = _("LDAP error, server says:") . "\n
($result) " . ldap_err2str($result); logNewMessage(LOG_ERR, 'User ' . $username . ' (' . $clientSource . ') failed to log in (LDAP error: ' . ldap_err2str($result) . ').'); } display_LoginPage($_SESSION['config']); exit(); } } //displays the login window display_LoginPage($_SESSION["config"]); ?>