You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2002/08/02 18:32:09 UTC

DO NOT REPLY [Bug 11428] New: - mod_auth_anon and many userids

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11428>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11428

mod_auth_anon and many userids

           Summary: mod_auth_anon and many userids
           Product: Apache httpd-1.3
           Version: 1.3.26
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: Auth/Access
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: geek-apache@burri.to


In the past, mod_auth_anon allowed you to configure things such that any 
userid was valid.  Here is a patch which will re-implement that behaviour.  
Once this patch is applied an "Anonymous *" stanza will allow any userid to 
match.

*** mod_auth_anon.c.old Fri Aug  2 12:22:07 2002
--- mod_auth_anon.c     Fri Aug  2 12:14:38 2002
***************
*** 240,245 ****
--- 240,247 ----
        while ((res == DECLINED) && (p != NULL)) {
            if (!(strcasecmp(c->user, p->password)))
                res = OK;
+           if (p->password[0] == '*')
+               res = OK;
            p = p->next;
        }
      }

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org