| CGI-Auth documentation | Contained in the CGI-Auth distribution. |
CGI::Auth - Simple session-based password authentication for CGI applications
require CGI::Auth;
my $auth = new CGI::Auth({
-authdir => 'auth',
-formaction => "myscript.pl",
-authfields => [
{id => 'user', display => 'User Name', hidden => 0, required => 1},
{id => 'pw', display => 'Password', hidden => 1, required => 1},
],
});
$auth->check;
CGI::Auth provides password authentication for web-based applications. It
uses server-based session files which are referred to by a parameter in all
links and forms inside the scripts guarded by CGI::Auth.
At the beginning of each script, a CGI::Auth object should be created and
its check method called. When this happens, check checks for a
'session_file' CGI parameter. If that parameter exists and has a matching
session file in the session directory, check returns, and the rest of the
script can execute.
If the session file parameter or the file itself doesn't exist, check
presents the user with a login form and exits the script. The login form will
then be submitted to the same script (specified in -formaction). When
check is called this time, it verifies the user's login information in the
userfile, creates a session file and provides the session file parameter to the
rest of the script.
Before anything can be done with CGI::Auth, an object must be created:
my $auth = new CGI::Auth( \%options );
newThe new method creates and configures a CGI::Auth object using
parameters that are passed via a hash reference that can/should contain the
following items (optional ones are indicated):
-cgi(optional)
This parameter provides CGI::Auth with a CGI object reference so that the
extra overhead of creating another object can be avoided. If your script is
going to use CGI.pm, it is most efficient to create the CGI object and pass it
to CGI::Auth, rather than both your script and Auth having to create
separate objects.
Note: As of version 2.4.3, CGI::Auth can now be used with CGI::Simple.
This hasn't been tested thoroughly yet, so use caution if you decide to do so.
-admin(optional if -formaction given)
This parameter should be used by command-line utilities that perform administration of the user database. If Auth is given this parameter, it will only allow command-line execution (execution from CGI will be aborted).
-authdir(required)
Directory where Auth will look for its files. In other words, if -sessdir,
-userfile, -logintmpl, -loginheader or -loginfooter are scalars
and do not begin with a slash (i.e., are not absolute paths), this directory
will be prepended to them.
-sessdir(optional, default = 'sess')
Directory where Auth will store session files. These files should be pruned periodically (i.e., nightly or weekly) since a session file will remain here if a user does not log out.
-userfile(optional, default = 'user.dat')
File containing definitions of users, including login information and any extra
parameters. This file will be created, edited and read by CGI::Auth and its
command-line administration tool.
-logintmpl(optional, excludes -loginheader and -loginfooter if present)
Template for use with HTML::Template. The template can be given in one of
three ways:
An HTML::Template object reference,
A hash containing parameters for HTML::Template->new, or
A filename (then -logintmplpath can be the path parameter).
The template must contain a form for the user to fill out, and it is
recommended that the form not contain any elements with names beginning with
'auth_', since these are reserved for CGI::Auth fields.
A sample template file (login.html) is included in the extra subdirectory of
this package.
For a list of what should be included in the template, see Template Variables and Template Loops below.
-logintmplpath(optional, default = [])
List of search path(s) for HTML::Template files (the 'path' option). This
is used only if -logintmpl is a filename. Otherwise, the path option must
be passed to HTML::Template->new directly.
-loginheader(optional, default = 'login.head' or a simple default header)
Header for login screen.
NOTE: -loginheader and -loginfooter are ignored if -logintmpl is
provided.
(optional, default = 'login.foot' or a simple default footer)
Footer for login screen.
NOTE: -loginheader and -loginfooter are ignored if -logintmpl is
provided.
-formaction(optional if -admin given)
URL of calling script. This is used by the login screen as the form's "action" property.
-authfields(required)
Array of hashes defining fields in user database. This requires at least one
field, which must be 'required' and not 'hidden'. Any other fields can be used
to authenticate the user or to contain information about the user such as
groups, access levels, etc. Once a user has logged on, all of his fields are
available through the data method. However, any fields that are marked
'hidden' will be crypted and not readable by the script.
Each field in the -authfields anonymous array is a hash containing 4 keys:
'id' ID of the field. This must be unique across all fields.
'display' Display string which is presented to the user.
'hidden' Flag (0 or 1) that determines whether this field is hidden
on the login screen and encrypted in the user file.
'required' Flag (0 or 1) indicating whether this field must be given
for authentication.
Here is an example of a simple username/password scheme, with one extra data parameter:
-authfields => [
{id => 'user', display => 'User Name', hidden => 0, required => 1},
{id => 'pw', display => 'Password', hidden => 1, required => 1},
{id => 'group', display => 'Group', hidden => 0, required => 0},
],
-timeout(optional, default = 60 * 15, 15 minutes)
The timeout value in seconds after which an unused session file will expire.
-cgiprune(optional, default = false)
Whether to allow calls to prune in CGI mode. If your CGI scripts need (or want) to delete old session files, this will have to be set to true. I can't think of any particular reason not to allow this, but it isn't allowed by default.
-md5pwd(optional, default = false)
Whether to use an MD5 hash for hidden fields in the user data file. If false,
the Perl built-in crypt is used twice (via the DoubleCrypt sub below), so
hidden fields are restricted to 16 characters. If true, MD5 hashes are used,
and there is no length restriction for hidden fields.
If this option is changed, the user data file will have to be recreated using MD5 hashes, so it's best to make this decision at the beginning.
Using MD5 hashes will result in a slight performance hit when logging in. This will probably not be noticeable at all.
These template variables are required. The names of these are case-insensitive by default. See HTML::Template for more information.
MessageA message to the user, such as "Login failed", "Session expired", etc...
NOTE: This variable might be left blank when the form is created. So don't depend on it having a value.
Form_ActionThe 'action' property of the form that submits the authentication information.
Button_NameThe 'name' property of the submit button on the form. The tag for the button should look something like this:
<input type=submit name="<TMPL_VAR Name=Button_Name>" value="Submit">
The 'value' property of the submit button can be anything.
These loops must exist in the template. The names of these are case-insensitive by default. See HTML::Template for more information.
Auth_FieldsProvides variables for each required Auth field. These are the fields which will be filled in by the user when logging in. The following variables are provided:
Display_NameThe display name of the field, e.g., "User Name" or "Password".
Input_NameThe 'name' property of the text input for the field.
Input_TypeThe type, 'text' or 'password', of the input, depending on whether this field is hidden or not.
There are two groups of public methods in CGI::Auth. The CGI-mode methods are called from CGI scripts for the purposes of authenticating a user and managing sessions. The command-line methods are used only in command-line scripts, such as the authman.pl sample userbase manager script. The latter methods will abort execution if they are run in a CGI environment.
These are used for creating a CGI::Auth object.
newConstructor. It accepts as a parameter a hash reference holding named
options. For a list and descriptions of these options, see
Parameters to new.
initPerforms processing of options passed to new. This should not be called
directly.
These methods are called from CGI scripts.
checkEnsures authentication. If the session file is not present or has expired, a login form is presented to the user. A call to this method should occur in every script that must be secured, before the script prints anything to the browser.
endsessionDeletes the session file so that the user must log in again to gain access.
Returns 1 if session file deleted successfully, 0 if an error occurred ($! will contain the error), or -1 if the session file did not exist.
setdataSets auth data fields.
dataReturns a given data field. The field's ID is passed as the parameter, and the
data is returned. The special field 'sess_file' returns the name of the
current session file in the -sessdir directory.
sfparam_nameReturns the name of the session file parameter (i.e., 'auth_sessfile').
sfparam_valueReturns the value of the session file parameter (i.e., the name of the session file).
formfield (deprecated)(deprecated) - Use of urlfield and formfield is discouraged in favour
of sfparam_name and sfparam_value because the latter provide much more
flexibility. For example, they allow you to create elements that are
XHTML-compliant, whereas the data returned from formfield is only valid for
HTML 4.
Returns the session file parameter as a hidden input field suitable for inserting in a <FORM>, e.g.:
'<input type="hidden" name="auth_sessfile" value="DBEEL87CXV7H">'
urlfield (deprecated) - Use of urlfield and formfield is discouraged in favour
of sfparam_name and sfparam_value because the latter provide much more
flexibility. For example, they allow you to create elements that are
XHTML-compliant, whereas the data returned from formfield is only valid for
HTML 4.
Returns the session file parameter as a field suitable for tacking onto the end of an URL (such as in a link), e.g.:
'auth_sessfile=DBEEL87CXV7H'.
These methods are used for user maintenance. They cannot be run under a CGI environment. Use them only in command-line programs as an administrator (or as a user with write access to the user data file).
adduserThe parameters are an ordered list of data values for the @authfields. For example:
$auth->adduser('KAM', 'smokey'); # Branchname, Password
listusersPrints a list of users in the user file.
viewuserPrints details for one user. The parameter is the user's 'field 0' value.
deluserDeletes a user. The parameter is the user's 'field 0' value.
prunePrunes the session file directory by deleting session files that have expired. This can be called in CGI mode if '-cgiprune' is set to true.
There are also some private methods. Use of them by unauthorized dirrty scripts is a federal offence in some jurisdictions, carrying a maximum sentence of yearly noogies by yours-truly. This may or may not be legal in your country.
GetUserDataFetches a user's auth data from the user file. The data fields are returned as a list, in the order in which they appear in the data file.
PrintLoginFormPrints the login form using either an HTML::Template or a header and footer.
This is called by check when the user is not authenticated.
This method hands off either to PLF_template or to PLF_headerfooter.
PLF_templatePrints the login form using an HTML::Template. It uses the value of the logintmpl property to get the template.
Prints the login form using a header and footer. It uses the values of the loginheader and loginfooter properties.
FormFieldsReturns HTML code for placing existing CGI parameters on a form so that the login process is transparent to the calling script.
For any single-valued parameters, it creates a hidden <input> control,
and for any multi-valued parameters, it creates a hidden (i.e.,
style="display: none") <select> control with all of its values.
CreateSessionFileCreates a session file in the session file directory.
OpenSessionFileOpens the session file and returns the user's id (field0) if successful.
The return value is one of three things:
Field 0 value from session file if successful,
0 if the session has expired, or
undef if the session file doesn't exist or can't be opened.
Feel free to use and abuse these. They just do dirty little jobs.
DenyCGIExits if run as CGI. This could be made a little more intelligent. The command-line methods call this function as their very first act.
DoubleCryptPerforms two crypt calls with the same salt, so that the limit of characters in passwords is doubled from 8 to 16. It's probably a good idea to use an MD5 hash or some other, more sophisticated alternative.
MD5CryptPerforms an MD5 hash on the password given and returns the hash as a 24-byte Base64 string of the hash. Requires the Digest::MD5 module.
This is used instead of DoubleCrypt if the -md5pwd option is set.
Any hidden fields such as passwords are sent over the network in clear
text, so anyone with low-level access to the network (such as an ISP
owner or a lucky/skilled hacker) could read the passwords and gain
access to your application. CGI::Auth has no control over this since
it is currently a server-side-only solution.
If your application must be fully secured, an encryption layer such as HTTPS should be used to encrypt the session so that passwords cannot be snooped by unauthorized individuals.
It would be adequate to use HTTPS only for the login process, and avoid the overhead of encryption during the rest of the session. But I expect that this would require modification of this module.
CGI::Auth doesn't use cookies, so it is left up to the script author to
ensure that auth data (i.e., the session file) is passed around consistently
through all links and entry forms.
C. Chad Wallace, cmdrwalrus@canada.com
If you have any suggestions, comments or bug reports, please send them to me. I will be happy to hear them.
Copyright (c) 2001, 2002, 2003 C. Chad Wallace. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
| CGI-Auth documentation | Contained in the CGI-Auth distribution. |
# $Id: Auth.pm,v 1.17 2004/01/28 07:05:46 cmdrwalrus Exp $ package CGI::Auth; use strict; use Carp; use vars qw/$VERSION/; $VERSION = '3.00'; # This delimiter cannot be a regex special character, unfortunately, since it # is used with split. So, for instance, the pipe (|) is not allowed, as well # as the dash (-), caret (^), dot (.), etc... use constant DELIMITER => ':';
sub new { my $proto = shift; my $class = ref($proto) || $proto; my $self = {}; bless $self, $class; $self->init(@_) or return undef; return $self; }
# Called by new--all parameters to new are passed off to init for processing. sub init { my ($self, $param) = (shift, shift); return 0 unless (UNIVERSAL::isa($param, 'HASH')); # Parameters in an anonymous hash. # All config options are passed here... no config file! $self->{cgi} = $param->{-cgi}; $self->{sessfile} = $param->{-sessfile}; $self->{admin} = $param->{-admin} ? 1 : 0; $self->{authdir} = $param->{-authdir}; $self->{sessdir} = $param->{-sessdir}; for ($self->{authdir}, $self->{sessdir}) { s|/+$|| if ($_); # Delete trailing slashes. } $self->{userfile} = $param->{-userfile}; if ($self->{logintmpl} = $param->{-logintmpl}) # Either an HTML::Template template, { $self->{logintmplpath} = $param->{-logintmplpath} || []; } else { $self->{loginheader} = $param->{-loginheader}; # or a header and footer. $self->{loginfooter} = $param->{-loginfooter}; } $self->{formaction} = $param->{-formaction}; $self->{authfields} = $param->{-authfields}; $self->{timeout} = $param->{-timeout}; $self->{cgiprune} = $param->{-cgiprune} ? 1 : 0; $self->{validchars} = $param->{-validchars}; $self->{md5pwd} = $param->{-md5pwd} ? 1 : 0; if ($self->{admin}) { &DenyCGI; } else { unless ( UNIVERSAL::isa( $self->{cgi}, 'CGI' ) || UNIVERSAL::isa( $self->{cgi}, 'CGI::Simple' ) ) { # Default to CGI if none is given. eval { require CGI; }; if ( $@ ) { # If CGI is not available, try CGI::Simple. eval { require CGI::Simple; }; if ( $@ ) { # If neither is available, there's gonna be trouble! croak "CGI::Auth needs CGI or CGI::Simple, but neither is available"; } else { # Got CGI::Simple, so create an object of it. $self->{cgi} = CGI::Simple->new; } } else { # Got CGI, so create an object of it. $self->{cgi} = new CGI; } } } unless ($self->{authdir} && ($self->{admin} || $self->{formaction}) && $self->{authfields}) { &carp("Auth::init - Missing required configuration data"); return 0; } # Set defaults for optional config entries if not given: unless ($self->{logintmpl}) { $self->{loginheader} = 'login.head' unless ($self->{loginheader}); $self->{loginfooter} = 'login.foot' unless ($self->{loginfooter}); } $self->{sessdir} = 'sess' unless ($self->{sessdir}); $self->{userfile} = 'user.dat' unless ($self->{userfile}); $self->{timeout} = 60 * 15 unless ($self->{timeout}); $self->{validchars} ||= '\w\d -_.'; if ( -1 != index( $self->{validchars}, DELIMITER ) ) { &carp( "Auth::init - Delimiter character '" . DELIMITER . "' cannot be included in validchars" ); return 0; } for (@{$self}{qw/sessdir userfile logintmpl loginheader loginfooter/}) { if ( $_ and not ref and not m{^/} ) { $_ = $self->{authdir} . '/' . $_; } } unless (-f $self->{userfile}) { &carp("Auth::init - User data file doesn't exist"); return 0; } for (@{$self->{authfields}}) { if ($_->{id} eq 'sess_file') { &carp("Auth::init - id 'sess_file' is reserved"); return 0; } } unless ($self->{authfields}->[0]->{required} and not $self->{authfields}->[0]->{hidden}) { &carp("Auth::init - First auth field must be required and not hidden--rethink your auth configuration"); return 0; } # Create authdata hash. $self->{authdata} = {}; return 1; }
sub check { my ($self) = @_; my $session_file = $self->{sessfile} || $self->{cgi}->param('auth_sessfile'); if ($session_file) { # Untaint. $session_file =~ s/[^0-9A-Za-z\._]+//g; $session_file =~ m/([0-9A-Za-z\._]+)/; $self->{sess_file} = $session_file = $1; my ($field0) = $self->OpenSessionFile; if ($field0) { return $self->setdata($self->GetUserData($field0)); } elsif (defined $field0) { $self->PrintLoginForm("Your session has expired. Please log in again."); exit(0); } else { $self->PrintLoginForm("Could not open session file. Please log in again."); &carp("Auth::check - Could not open session file"); exit(0); } } elsif (defined $self->{cgi}->param('auth_submit')) { my $authfield0 = $self->{authfields}->[0]; my $field0 = $self->{cgi}->param( 'auth_' . $authfield0->{id} ); my @userdata = $self->GetUserData( $field0 ); # Make sure GetUserData found the user. if ( not @userdata ) { $self->PrintLoginForm( "Authentication failed! Check login information and try again." ); &carp( "Auth::check - Invalid '" . $authfield0->{display} . "' field" ); exit( 0 ); } # Verify required fields in form data with those in @userdata. eval { for my $idx ( 1 .. @{ $self->{authfields} } - 1 ) { my $authfield = $self->{authfields}->[$idx]; if ( $authfield->{required} ) { my $formvalue = $self->{cgi}->param( 'auth_' . $authfield->{id} ); if ( $authfield->{hidden} ) { # Check against crypted userdata. if ( $self->{md5pwd} ) { # MD5 hash. if ( MD5Crypt( $formvalue ) ne $userdata[$idx] ) { die "MD5 mismatch on '" . $authfield->{display} . "' field"; } } else { # Double crypt(). if ( DoubleCrypt( $formvalue, $userdata[$idx] ) ne $userdata[$idx] ) { die "crypt() mismatch on '" . $authfield->{display} . "' field"; } } } else { # Check against uncrypted userdata. if ( $userdata[$idx] ne $formvalue ) { die "Mismatch on '" . $authfield->{display} . "' field"; } } } } }; if ( $@ ) { $self->PrintLoginForm( "Authentication failed! Check login information and try again." ); &carp( "Auth::check - $@" ); exit( 0 ); } else { if ( $self->{sess_file} = $self->CreateSessionFile( $field0 ) ) { return $self->setdata( @userdata ); } else { $self->PrintLoginForm( "A session file could not be created. You may not be able to log in at this time." ); &carp( "Auth::check - Could not create session file" ); exit( 0 ); } } } else { $self->PrintLoginForm; exit(0); } }
sub endsession { my $self = shift; if (-f $self->{sessdir} . "/" . $self->{sess_file}) { return unlink $self->{sessdir} . "/" . $self->{sess_file}; } else { return -1; } }
sub setdata { my $self = shift; my @data = @_; return 0 if (@data != @{$self->{authfields}}); for (my $idx = 0; $idx < @data; ++$idx) { next if ($self->{authfields}->[$idx]->{hidden}); # Store non-hidden data in authdata for program to access. $self->{authdata}->{$self->{authfields}->[$idx]->{id}} = $data[$idx]; } return 1; }
sub data { my $self = shift; my $key = shift; if ($key eq 'sess_file') { return $self->{sess_file}; } return $self->{authdata}->{$key}; }
sub sfparam_name { 'auth_sessfile'; }
sub sfparam_value { my $self = shift; $self->data('sess_file'); }
sub formfield { my $self = shift; my $name = $self->sfparam_name; my $value = $self->sfparam_value; return qq(<input type="hidden" name="$name" value="$value">); }
sub urlfield { my $self = shift; my $name = $self->sfparam_name; my $value = $self->sfparam_value; return qq($name=$value); }
sub adduser { my $self = shift; &DenyCGI; my @userdata = @_; &croak("Bad user data") if (@userdata != @{$self->{authfields}}); # Append user to user file. open USER, ">> " . $self->{userfile} or return 0; for (my $idx = 0; $idx < @userdata; ++$idx) { my $authfield = $self->{authfields}->[$idx]; if ( $authfield->{hidden} ) { if ( $self->{md5pwd} ) { $userdata[$idx] = MD5Crypt( $userdata[$idx] ); } else { if ( length $userdata[$idx] > 16 ) { &croak( "Hidden field '" . $authfield->{display} . "' cannot have length greater than 16 characters when using crypt" ); } # Store encrypted. $userdata[$idx] = DoubleCrypt( $userdata[$idx], join '', ('.', '_', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64] ); } } } print USER join( DELIMITER, @userdata ), "\n"; close USER; }
sub listusers { my ($self) = @_; &DenyCGI; open USER, "< " . $self->{userfile} or return; while (<USER>) { my ($br) = split( DELIMITER, $_, 2 ); print "$br\n"; } close USER; }
sub viewuser { my ($self, $field0) = @_; &DenyCGI; my @userdata = $self->GetUserData($field0); if (@userdata == 0) { print "$field0 does not exist.\n"; return 0; } &croak("Bad user data for $field0") if (@userdata != @{$self->{authfields}}); for (my $idx = 0; $idx < @userdata; ++$idx) { my $msg = $self->{authfields}->[$idx]->{display}; $msg .= " (required)" if ($self->{authfields}->[$idx]->{required}); $msg .= " (hidden)" if ($self->{authfields}->[$idx]->{hidden}); $msg .= ": " . $userdata[$idx] . "\n"; print $msg; } }
sub deluser { my ($self, $field0) = @_; &DenyCGI; $self->viewuser($field0); print "\nDelete this user? "; my $resp = <STDIN>; # If the response begins with a 'y' (or 'Y'), ie. 'yes' or 'y' or 'you better not!'... if ( $resp =~ /^[yY]/ ) { open USER, "< " . $self->{userfile} or &croak("Unable to read userfile: $!"); my @userfile = <USER>; close USER; open USER, "> " . $self->{userfile} or &croak("Unable to write userfile: $!"); for (@userfile) { if (!/^$field0\b/i) { print USER $_; } } close USER; print "\nUser deleted.\n"; } else { print "\nUser not deleted.\n"; } }
sub prune { my $self = shift; &DenyCGI unless ( $self->{cgiprune} ); my $pruned = 0; opendir SESSDIR, $self->{sessdir}; while (my $file = readdir(SESSDIR)) { $file = $self->{sessdir} . '/' . $file; next unless (-f $file); my $mtime = (stat _)[9]; my $now = time; my $age = $now - $mtime; $pruned += unlink $file if ($age > $self->{timeout}); } closedir SESSDIR; return $pruned; }
sub GetUserData { my ($self, $field0) = @_; unless ( $field0 ) { warn "Field0 not given"; return; } unless ( open( USER, "< " . $self->{userfile} ) ) { warn "Couldn't open userfile"; return; } my @userdata; my $fzero = $field0 . DELIMITER; while ( <USER> ) { next if ( !/^$fzero/i ); # Field 0 found--get user data. chop; @userdata = split( DELIMITER ); last; } close USER; if ( lc $userdata[0] ne lc $field0 ) { warn "Field 0 ($field0) doesn't match (" . join( ', ', @userdata ) . ")"; return; } return @userdata; }
sub PrintLoginForm { my ($self, $msg) = @_; print $self->{cgi}->header; if ($self->{logintmpl}) { $self->PLF_template($msg); } else { $self->PLF_headerfooter($msg); } }
sub PLF_template { my ($self, $msg) = @_; require HTML::Template; # logintmpl can be one of three things (which are all true values): # 1. An HTML::Template object reference, # 2. A hash containing parameters for HTML::Template->new, or # 3. A filename (then logintmplpath can be the path parameter). my $template = $self->{logintmpl}; unless ( UNIVERSAL::isa( $template, 'HTML::Template' ) ) { $template = new HTML::Template( UNIVERSAL::isa( $template, 'HASH' ) ? %{ $self->{logintmpl} } : ( filename => $template, path => $self->{logintmplpath}, ) ); } # Create parameters for Auth_Fields <TMPL_LOOP>. my @fields = (); foreach my $authfield (@{$self->{authfields}}) { if ($authfield->{required}) { push @fields, { Display_Name => $authfield->{display}, Input_Name => 'auth_' . $authfield->{id}, Input_Type => $authfield->{hidden} ? 'password' : 'text', }; } } $template->param( Message => $msg, Auth_Fields => \@fields, Button_Name => 'auth_submit', Form_Action => $self->{formaction}, Form_Fields => $self->FormFields, ); print $template->output(); }
sub PLF_headerfooter { my ($self, $msg) = @_; if (open HEADER, "< " . $self->{loginheader}) { my @header = <HEADER>; close HEADER; print @header; } else { print <<DEFAULT; <html> <head> <title>Login</title> </head> <body> <p>Please enter your login information:</p> DEFAULT } if ($msg) { print qq(<p style="color: red; font-weight: bold;">$msg</p>\n); } my $formaction = $self->{formaction}; print <<START; <form method=post action="$formaction"> <table border=0> START print $self->FormFields; # Print form for filling in auth fields. foreach my $authfield (@{$self->{authfields}}) { if ($authfield->{required}) { if ($authfield->{hidden}) { print "<tr><td align=left><p><b>", $authfield->{display}, ":</b></p></td>", "<td align=left><p><input type=password name=auth_", $authfield->{id}, "></p></td>\n"; } else { print "<tr><td align=left><p><b>", $authfield->{display}, ":</b></p></td>", "<td align=left><p><input type=text name=auth_", $authfield->{id}, "></p></td>\n"; } } } print <<END; </table> <p><input type=submit name="auth_submit" value="Login"></p> </form> END if (open FOOTER, "< " . $self->{loginfooter}) { my @footer = <FOOTER>; close FOOTER; print @footer; } else { print "</body></html>\n"; } }
sub FormFields { my ($self) = shift; my $formfields = ''; for my $name ($self->{cgi}->param) { next if ($name =~ /^auth_/); my @values = $self->{cgi}->param($name); if (@values < 2) # i.e., 0 or 1 values. { my $val = $values[0] || ''; $formfields .= qq(<input type=hidden name="$name" value="$val">\n); } else { $formfields .= join ("\n", qq(<select multiple name="$name" style="display:none">), (map {qq(<option selected value="$_" style="display:none">$_</option>)} @values), qq(</select>), '' # For a \n at the end. ); } } return $formfields; }
sub CreateSessionFile { my ($self, $field0) = @_; my @chars = (0..9, 'A'..'Z'); my $sessfilename; # Verify format and untaint. my $env_ra = $ENV{REMOTE_ADDR} || ''; $env_ra =~ /([\dA-F\.:]+)/; # IPv4 or IPv6 address. my $remoteaddr = $1 || ''; do { $sessfilename = join '', map {$chars[rand 36]} (1..12); } while (-e $self->{sessdir} . "/$sessfilename"); open SESS, "> " . $self->{sessdir} . "/$sessfilename" or return; print SESS $field0, "\n"; print SESS $remoteaddr, "\n" if ( $remoteaddr ); close SESS; return $sessfilename; }
sub OpenSessionFile { my $self = shift; my $sessfile = $self->{sessdir} . "/" . $self->{sess_file}; if (-f $sessfile) { my $mtime = (stat _)[9]; my $now = time; my $age = $now - $mtime; # How old is the session file? # Check age against timeout value. if ($age > $self->{timeout}) { # Too old! unlink $sessfile; return 0; } # Attempt to open file. if (open (SESS, "< $sessfile")) { # Read information from file. my $field0 = <SESS>; my $file_ra = <SESS>; close SESS; # If $field0 has any invalid chars, return error. # This also untaints $field0. my $validchars = $self->{validchars}; if ( $field0 =~ /^([$validchars]+)$/ ) { $field0 = $1; } else { warn "UserID [$field0] found in session file is invalid"; return undef; } $file_ra =~ /^(\S*?)$/; $file_ra = $1; # Verify remote IP address, if present in file. # What this does is ensure that if the REMOTE_ADDR was available at # login time, it must be available now and must be the same. if ( $file_ra and $file_ra ne $ENV{REMOTE_ADDR} ) { # IP address doesn't match. # Return error: unable to access session file. warn "Address [$file_ra] found in session file does not match REMOTE_ADDR [" . $ENV{REMOTE_ADDR} . "]"; return undef; } # Update modification time for timeout. utime $now, $now, $sessfile; # Return Field 0 (ie, user name). return $field0; } # File couldn't be opened. &carp("Couldn't open session file $sessfile because '$!'"); } # Non-existent or inaccessible session file. return undef; }
sub DenyCGI { if ( $ENV{GATEWAY_INTERFACE} || $ENV{REQUEST_METHOD} || $ENV{REMOTE_ADDR} ) { print <<ERRORDOC; Content-type: text/html <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html><head><title>Forbidden</title></head> <body><h1>Access Denied</h1><p>You are not allowed to access this page.</p></body> </html> ERRORDOC exit; } }
sub DoubleCrypt { my ($str, $salt) = @_; # Eliminates warnings about substr beyond end of string. if (length($str) > 8) { return crypt(substr($str, 0, 8), $salt) . crypt(substr($str, 8, 8), $salt); } else { return crypt($str, $salt) . crypt('', $salt); } }
sub MD5Crypt { my ( $str ) = @_; require Digest::MD5; return Digest::MD5->new->add( $str )->b64digest; }
# Return true when 'require'd. 1;