RE: Avoid Directory Listings

2005-02-20 Thread Caldarale, Charles R
From: Eduardo Andrés Alfonso Sierra [mailto:[EMAIL PROTECTED] Subject: Avoid Directory Listings Is there any posibility to secure the directory listings of every directory in an application ?? Try disabling the listings parameter for the default servlet in conf/web.xml. - Chuck

Re: Avoid Directory Listings

2005-02-20 Thread Tim Funk
No. You'd need to extend the default servlet then detect when a dir listing will be displayed, then use programmatic authorization. -Tim Eduardo Andrés Alfonso Sierra wrote: Hi I'm trying to stop tomcat from list contents of directories. I've tried securing it and it works but has the BIG

Avoid Directory Listings

2005-02-19 Thread Eduardo Andrés Alfonso Sierra
Hi I'm trying to stop tomcat from list contents of directories. I've tried securing it and it works but has the BIG problem that you must secure every directory separated. Is there any posibility to secure the directory listings of every directory in an application ?? Thanks in advance. I'm