All rights reserved. Copyright (C) 2005-2006 Bill Marquette All rights reserved. Copyright (C) 2006 Paul Taylor . All rights reserved. Copyright (C) 2003-2006 Manuel Kasper . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ include_once("auth.inc"); require_once("functions.inc"); /* We only support htpasswd backed HTTP Basic auth and session * based backing methods at the moment. * session_auth - this will use session based authentication and timeout * htpasswd_backed - this uses the "standard" .htpasswd file * passwd_backed - this will use the system passwd file in /etc * radius_backed - this will allow you to use a radius server * pam_backed - this uses the system's PAM facility .htpasswd file */ //log_error("debug: FILE_NAME = {$_SERVER['REQUEST_URI']}"); //log_error("debug: FILE_NAME = {$_SERVER['SCRIPT_FILENAME']}"); //log_error("debug: SCRIPT_NAME = {$_SERVER['SCRIPT_NAME']}"); /* enable correct auth backend, default to htpasswd_backed */ $ldapcase = $config['system']['webgui']['backend']; switch($ldapcase) { case ldap: $backing_method="ldap_backed"; break; case ldapother: $backing_method="ldap_backed"; break; default: $backing_method="local_backed"; } /* Authenticate user - exit if failed */ if (!session_auth($backing_method)) exit; /* * Once here, the user has authenticated with the web server. * We give them access only to the appropriate pages based on * the user or group privileges. */ $allowedpages = getAllowedPages($HTTP_SERVER_VARS['AUTH_USER']); /* * redirect to first allowed page if requesting a wrong url */ if (!isAllowedPage($_SERVER['SCRIPT_NAME'])) { if (count($allowedpages) > 0) { $page = str_replace('*', '', $allowedpages[0]); $_SESSION['Post_Login'] = true; pfSenseHeader("/{$page}"); exit; } else { display_error_form("201", "No page assigned to this user! Click here to logout."); exit; } } else $_SESSION['Post_Login'] = true; /* * redirect browsers post-login to avoid pages * taking action in reponse to a POST request */ if (!$_SESSION['Post_Login']) { $_SESSION['Post_Login'] = true; pfSenseHeader($_SERVER['REQUEST_URI']); exit; } /* * determine if the user is allowed access to the requested page */ function display_error_form($http_code, $desc) { global $config, $g; $g['theme'] = $config['theme']; if(isAjax()) { echo "Error: {$http_code} Description: {$desc}"; return; } ?> <?=$http_code?>

 

"True") { isset($_SESSION['Login_Error']) ? $login_error = $_SESSION['Login_Error'] : $login_error = "unknown reason"; echo "showajaxmessage('Invalid login ({$login_error}).');"; } if (file_exists("{$g['tmp_path']}/webconfigurator.lock")) { // TODO: add the IP from the user who did lock the device $whom = file_get_contents("{$g['tmp_path']}/webconfigurator.lock"); echo "showajaxmessage('This device is currently beeing maintained by: {$whom}.');"; } } exit; } ?> <?=gettext("Login"); ?>

:


:


" tabindex="3" />