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. pfSense_MODULE: authgui */ include_once("auth.inc"); include_once("priv.inc"); /* Authenticate user - exit if failed */ if (!session_auth()) { display_login_form(); 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; require_once("functions.inc"); pfSenseHeader("/{$page}"); $username = empty($_SESSION["Username"]) ? "(system)" : $_SESSION['Username']; if (!empty($_SERVER['REMOTE_ADDR'])) $username .= '@' . $_SERVER['REMOTE_ADDR']; log_error("{$username} attempted to access {$_SERVER['SCRIPT_NAME']} but does not have access to that page. Redirecting to {$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; require_once("functions.inc"); pfSenseHeader($_SERVER['REQUEST_URI']); exit; } /* * Close session data to allow other scripts from same host to come in. * A session can be reactivated from calling session_start again */ session_commit(); /* * determine if the user is allowed access to the requested page */ function display_error_form($http_code, $desc) { global $config, $g; $g['theme'] = get_current_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 being maintained by: {$whom}.');"; } } exit; } /* Check against locally configured IP addresses, which will catch when someone port forwards WebGUI access from WAN to an internal IP on the router. */ global $FilterIflist, $nifty_background; $local_ip = false; if(strstr($_SERVER['HTTP_HOST'], ":")) { $http_host_port = explode(":", $_SERVER['HTTP_HOST']); $http_host = $http_host_port[0]; } else { $http_host = $_SERVER['HTTP_HOST']; } if (empty($FilterIflist)) { require_once('filter.inc'); require_once('shaper.inc'); filter_generate_optcfg_array(); } foreach ($FilterIflist as $iflist) if($iflist['ip'] == $http_host) $local_ip = true; if($config['virtualip']) if($config['virtualip']['vip']) foreach($config['virtualip']['vip'] as $vip) if($vip['subnet'] == $http_host) $local_ip = true; ?> <?=gettext("Login"); ?>

If you did not setup this forwarding, you may be the target of a man-in-the-middle attack.")); } $noautocomplete = isset($config['system']['webgui']['noautocomplete']) ? 'autocomplete="off"' : ''; ?>
action="">

:


:


" tabindex="3" />