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

http://issues.apache.org/bugzilla/show_bug.cgi?id=25055

bypass of apache authentication





------- Additional Comments From [EMAIL PROTECTED]  2004-09-20 18:56 -------
Since the problem seems to lay inside Apache hooks, I spent some time to explore
hooks configuration in Apache 2 mod_jk2/mod_jk modules. 

This is the piece of code involved

static void jk2_register_hooks(apr_pool_t * p)
{
    ap_hook_handler(jk2_handler, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_post_config(jk2_post_config, NULL, NULL, APR_HOOK_MIDDLE);

    /* Force the mpm to run before us and set the scoreboard image */
    ap_hook_child_init(jk2_child_init, NULL, NULL, APR_HOOK_LAST);

    ap_hook_translate_name(jk2_translate, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_map_to_storage(jk2_map_to_storage, NULL, NULL, APR_HOOK_MIDDLE);
}

I see nothing about authentication in this. Furthermore,  I don't see where
htaccess handling takes place inside Apache 2 request processing. If anyone has
any idea on how to configure modjk for Apache2, please let us know.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to