#!/usr/local/bin/php . All rights reserved. Copyright (C) 2005 Pascal Suter . All rights reserved. (files was created by Pascal based on the source code of services_captiveportal.php from Manuel) 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. */ $pgtitle = array("Services", "Captive portal"); require("guiconfig.inc"); if(isset($_POST['save'])){ //value-checking if(trim($_POST['password1'])!="********" && trim($_POST['password1'])!="" && trim($_POST['password1'])!=trim($_POST['password2'])){ //passwords are to be changed but don't match $input_errors[]="passwords don't match"; } if((trim($_POST['password1'])=="" || trim($_POST['password1'])=="********") && (trim($_POST['password2'])=="" || trim($_POST['password2'])=="********")){ //assume password should be left as is if a password is set already. if(!empty($config['users'][$_POST['old_username']]['password'])){ $_POST['password1']="********"; $_POST['password2']="********"; } else { $input_errors[]="password must not be empty"; } } else { if(trim($_POST['password1'])!=trim($_POST['password2'])){ //passwords are to be changed or set but don't match $input_errors[]="passwords don't match"; } else { //check password for invalid characters if(!preg_match('/^[a-zA-Z0-9_\-\.@\~\(\)\&\*\+§?!\$£°\%;:]*$/',$_POST['username'])){ $input_errors[] = "password contains illegal characters, only letters from A-Z and a-z, _, -, .,@,~,(,),&,*,+,§,?,!,$,£,°,%,;,: and numbers are allowed"; //test pw: AZaz_-.@~()&*+§?!$£°%;: } } } if($_POST['username']==""){ $input_errors[] = "username must not be empty!"; } //check for a valid expirationdate if one is set at all (valid means, strtotime() puts out a time stamp //so any strtotime compatible time format may be used. to keep it simple for the enduser, we only claim //to accept MM/DD/YYYY as inputs. advanced users may use inputs like "+1 day", which will be converted to //MM/DD/YYYY based on "now" since otherwhise such an entry would lead to a never expiring expirationdate if(trim($_POST['expirationdate'])!=""){ if(strtotime($_POST['expirationdate'])>0){ if(strtotime("-1 day")>strtotime(date("m/d/Y",strtotime($_POST['expirationdate'])))){ $input_errors[] = "selected expiration date lies in the past"; } else { //convert from any strtotime compatible date to MM/DD/YYYY $expdate = strtotime($_POST['expirationdate']); $_POST['expirationdate'] = date("m/d/Y",$expdate); } } else { $input_errors[] = "invalid expiration date format, use MM/DD/YYYY instead"; } } //check username: only allow letters from A-Z and a-z, _, -, . and numbers from 0-9 (note: username can //not contain characters which are not allowed in an xml-token. i.e. if you'd use @ in a username, config.xml //could not be parsed anymore! if(!preg_match('/^[a-zA-Z0-9_\-\.]*$/',$_POST['username'])){ $input_errors[] = "username contains illegal characters, only letters from A-Z and a-z, _, -, . and numbers are allowed"; } if(!empty($input_errors)){ //there are illegal inputs --> print out error message and show formular again (and fill in all recently entered values //except passwords $_GET['act']="new"; $_POST['old_username']=($_POST['old_username'] ? $_POST['old_username'] : $_POST['username']); $_GET['username']=$_POST['old_username']; foreach(Array("username","fullname","expirationdate") as $field){ $config['users'][$_POST['old_username']][$field]=$_POST[$field]; } } else { //all values are okay --> saving changes $_POST['username']=trim($_POST['username']); if($_POST['old_username']!="" && $_POST['old_username']!=$_POST['username']){ //change the username (which is used as array-index) $config['users'][$_POST['username']]=$config['users'][$_POST['old_username']]; unset($config['users'][$_POST['old_username']]); } foreach(Array('fullname','expirationdate') as $field){ $config['users'][$_POST['username']][$field]=trim($_POST[$field]); } if(trim($_POST['password1'])!="********" && trim($_POST['password1'])!=""){ $config['users'][$_POST['username']]['password']=md5(trim($_POST['password1'])); } write_config(); $savemsg=$_POST['username']." successfully saved
"; } } else if ($_GET['act']=="delete" && isset($_GET['username'])){ unset($config['users'][$_GET['username']]); write_config(); $savemsg=$_GET['username']." successfully deleted
"; } //erase expired accounts $changed=false; if(is_array($config['users'])){ foreach($config['users'] as $username => $user){ if(trim($user['expirationdate'])!="" && strtotime("-1 day")>strtotime($user['expirationdate']) && empty($input_errors)){ unset($config['users'][$username]); $changed=true; $savemsg.="$username has expired --> $username was deleted
"; } } if($changed){ write_config(); } } ?> <?=gentitle("pfSense webGUI");?>
END; if(is_array($config['users'])){ foreach($config['users'] as $username => $user){ ?>
Username
Username to be used
Password ">
Password for the user
confirm Password ">
Confirm the above Password
Full Name
Full Name of current user, for your own information only
Expiration Date Pick a date
enter nothing if account doesnt expire, otherwhise enter the expiration date in us-format: mm/dd/yyyy
 
Username Full Name Expires
       
END; } ?>