Home Logout

Change Password
Create New User Account

Private data: You are now logged in as

Logged in from

Go to manual

SERVER SIDE SESSIONS AND ACCESS CONTROL (LOGIN)

An infrastructure for user acount authorization and file access control is available. Each request is matched against a list of URL path patterns. If the request matches, a Session Ticket is required to access the URL. This Session Ticket should be present as a CGI parameter or Cookie:

CGI: SESSIONTICKET=<value>
Cookie: CGIscriptorSESSION=<value>

The example implementation stores Session Tickets as files in a local directory. To create Session Tickets, a Login request must be given with a LOGIN=<value> CGI parameter, a user name and a (doubly hashed) password. The user name and (singly hashed) password are stored in a PASSWORD ticket with the same name as the user account (name cleaned up for security). There is a Tutorial of the authorization application.