#! /usr/bin/env python -u # # Copyright (C) 1998 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Provide a password-interface wrapper around a hierarchy of web pages. Currently this is organized to obtain passwords for mailman maillist subscribers. - Set the ROOT variable to point to the root of your archives private hierarchy. The script will look there for the private archive files. - Put the ../misc/Cookie.py script in ../../cgi-bin (where the wrapper executables are). """ import sys, os, string, re import maillist, mm_err, mm_utils import Cookie ROOT = "/local/pipermail/private/" SECRET = "secret" # XXX used for hashing PAGE = '''
A list named,', repr(list_name), "was not found." return 0 try: listobj.ConfirmUserPassword( username, password) except (mm_err.MMBadUserError, mm_err.MMBadPasswordError): return 1 import base64, md5 token = md5.new(SECRET + list_name + SECRET).digest() token = base64.encodestring(token) token = string.replace(token, "\n", "@") c = Cookie.Cookie() c[list_name] = token print c # Output the cookie return 1 def true_path(path): "Ensure that the path is safe by removing .." path = string.split(path, '/') for i in range(len(path)): if path[i] == ".": path[i] = "" # ./ is just redundant elif path[i] == "..": # Remove any .. components path[i] = "" j=i-1 while j>0 and path[j] == "": j=j-1 path[j] = "" path = filter(None, path) return string.join(path, '/') def processPage(page): """Change any URLs that start with ../ to work properly when output from /cgi-bin/private""" # Escape any % signs not followed by ( page = re.sub('%([^(])', r'%%\1', page) # Convert references like HREF="../doc" to just /doc. page = re.sub('([\'="])../', r'\1/', page) return page def main(): print 'Content-type: text/html\n' path = os.environ.get('PATH_INFO', "/index.html") true_filename = os.path.join(ROOT, true_path(path) ) list_name = getListName(path) if os.path.isdir(true_filename): true_filename = true_filename + '/index.html' if not isAuthenticated(list_name): # Output the password form page = processPage( PAGE ) listobj = GetListobj(list_name) if login_attempted: message = ("Your email address or password were incorrect." " Please try again.") else: message = ("Please enter your %s subscription email address" " and password." % listobj.real_name) while path and path[0] == '/': path=path[1:] # Remove leading /'s basepath = os.path.split(listobj.GetBaseArchiveURL())[0] listname = listobj.real_name print '\n\n', page % vars() sys.exit(0) print '\n\n' # Authorization confirmed... output the desired file try: f = open(true_filename, 'r') except IOError: print "