Re: Rewriting the Url

2008-03-04 Thread Pitchaimani Muthuveeran
I believe that mod_rewrite can be useful for converting static url alone... - Original Message - From: Peter Belau [EMAIL PROTECTED] To: modules-dev@httpd.apache.org Sent: Saturday, March 01, 2008 8:18 AM Subject: RE: Rewriting the Url I believe that you can do this with

PCRE CVE in 2.2.x/trunk

2008-03-04 Thread Eric Covener
PCRE vuln CVE-2006-7225 applies to the bundled PCRE v5 in 2.2.x and trunk. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-7225 PCRE 6.7 ChangeLog: 18. A valid (though odd) pattern that looked like a POSIX character class but used an invalid character after [ (for example

Re: mod_proxy / ProxyTimeout fix 2.0.63

2008-03-04 Thread Jim Jagielski
Looking over this, I see that ap_proxy_connect_to_backend() sets the socket timeout to conf-timeout already... On Feb 21, 2008, at 2:29 PM, Ronald Park wrote: Hi Folks, After fumbling up a previous attempt to send in this patch, I'm going to try again, making sure to attach the patch this

LDAP and subgroups

2008-03-04 Thread John D'Ausilio
I've got a system that authenticates and authorizes against m$ active directory. Everything was working fine with authnz_ldap until the admins decided that they needed to add a subgroup to one of the groups I use (and expect me to find people in it). I did a build today from svn of the 2.3-HEAD

Re: LDAP and subgroups

2008-03-04 Thread Eric Covener
On Tue, Mar 4, 2008 at 2:28 PM, John D'Ausilio [EMAIL PROTECTED] wrote: authorise: require group (sub-group): authorisation successful (attribute member) [Comparison true (cached)][6 - Compare True] [client 10.5.131.52] user jdausilio: authorization failure for /index.html: Looks like a

Re: LDAP and subgroups

2008-03-04 Thread John D'Ausilio
That did the trick .. thanks! On Tue, Mar 4, 2008 at 2:40 PM, Eric Covener [EMAIL PROTECTED] wrote: On Tue, Mar 4, 2008 at 2:28 PM, John D'Ausilio [EMAIL PROTECTED] wrote: authorise: require group (sub-group): authorisation successful (attribute member) [Comparison true (cached)][6 -

[PATCH] ap_socache.h mod_socache_*

2008-03-04 Thread Joe Orton
The cleanest and simplest way to extract the session cache providers from mod_ssl seems to be like this: 1) define the provider vtable structure in a header, ap_socache.h 2) implement all the provider backends in separate modules, mod_socache_* There's no central registration of new backends

Re: LDAP and subgroups

2008-03-04 Thread Ruediger Pluem
On 03/04/2008 08:28 PM, John D'Ausilio wrote: mod_authnz_ldap.c(774): [client 10.5.131.52] [31275] auth_ldap authorise: require group (sub-group): authorisation successful (attribute member) [Comparison true (cached)][6 - Compare True] [client 10.5.131.52] user jdausilio: authorization

Re: LDAP and subgroups

2008-03-04 Thread John D'Ausilio
Already tested up thread, fixes the issue nicely .. thanks On Tue, Mar 4, 2008 at 3:07 PM, Ruediger Pluem [EMAIL PROTECTED] wrote: On 03/04/2008 08:28 PM, John D'Ausilio wrote: mod_authnz_ldap.c(774): [client 10.5.131.52] [31275] auth_ldap authorise: require group (sub-group):

Re: [PATCH] ap_socache.h mod_socache_*

2008-03-04 Thread Paul Querna
Joe Orton wrote: The cleanest and simplest way to extract the session cache providers from mod_ssl seems to be like this: 1) define the provider vtable structure in a header, ap_socache.h 2) implement all the provider backends in separate modules, mod_socache_* There's no central