Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mschout/apache-authcookie
mod_perl Authentication and Authorization via cookies
https://github.com/mschout/apache-authcookie
Last synced: about 1 month ago
JSON representation
mod_perl Authentication and Authorization via cookies
- Host: GitHub
- URL: https://github.com/mschout/apache-authcookie
- Owner: mschout
- Created: 2009-10-24T19:12:38.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T14:59:12.000Z (5 months ago)
- Last Synced: 2024-08-17T15:47:26.339Z (5 months ago)
- Language: Perl
- Homepage:
- Size: 500 KB
- Stars: 3
- Watchers: 8
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
OVERVIEW
Apache::AuthCookie allows you to intercept a user's first unauthenticated
access to a protected document. The user will be presented with a custom
form where they can enter authentication credentials. The credentials are
posted to the server where AuthCookie verifies them and returns a session
key.The session key is returned to the user's browser as a cookie. As a cookie,
the browser will pass the session key on every subsequent accesses.
AuthCookie will verify the session key and re-authenticate the user.All you have to do is write a custom module that inherits from AuthCookie.
See the POD documentation for more details.INSTALLATION
This module uses the Apache::Test framework for testing. As a result, any
other Apache::Test parameters can be used when generating the Makefile.perl Makefile.PL -apxs /usr/sbin/apxs
make
make test
make install