NAME
Plack::Middleware::Auth::Negotiate - Negotiate authentication middleware (SPNEGO)
VERSION
Version 0.02
SYNOPSIS
use Plack::Builder;
my $app = sub { ... };
builder {
enable 'Auth::Negotiate', keytab => 'FILE:www.keytab';
$app;
};
DESCRIPTION
Plack::Middleware::Auth::Negotiate provides Negotiate (SPNEGO) authentication for your Plack application (for use with Kerberos).
This is a very alpha module, and I am still testing some of the security corner cases. Help wanted.
CONFIGURATION
keytab: path to the keytab to use. This value is set as
$ENV{KRB5_KTNAME}
if provided.
Note that there is no option for matching URLs. You can do this yourself with Plack::Middleware::Conditional's enable_if
syntax (for Plack::Builder).
TODO
More security testing.
Ability to specify a list of valid realms. If REALM.EXAMPLE.COM trusts REALM.FOOBAR.COM, and we don't want to allow REALM.FOOBAR.COM users, we have to check after accepting the ticket.
Option to automatically trim the @REALM.EXAMPLE.COM portion of the user value.
Method to also provide Basic auth if Negotiate fails.
Some way to cooperate with other Auth middleware.
enable_if
is your best bet right now (with different URLs for each type of authentication, and writing a session).Better interaction with Plack::Middleware::Session, since this authentication is slow in my experience.
Better implementation of the actual RFC.
Custom "Authorization Required" message
SEE ALSO
Plack, Plack::Builder, Plack::Middleware::Auth::Basic
GSSAPI, mod_auth_kerb
ACKNOWLEDGEMENTS
This code is based off of Plack::Middleware::Auth::Basic and a sample script provided with GSSAPI.
AUTHOR
Adrian Kreher, <avuserow at cpan.org>
BUGS
Please report any bugs or feature requests to bug-plack-middleware-auth-negotiate at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Plack-Middleware-Auth-Negotiate. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Plack::Middleware::Auth::Negotiate
LICENSE AND COPYRIGHT
Copyright 2011 Adrian Kreher.
This program is distributed under the (Revised) BSD License: http://www.opensource.org/licenses/bsd-license.php
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of Adrian Kreher's Organization nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS 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.