I am working thru locking down my Apache 1.3.33 servers. I am using the LimitExcept directive in the httpd.conf (so it covers all vhosts as well). But now I need to test to see that it is working.
I have put the same Directive in 2 separate system and got very different results.
When I tested by telneting to port 80 and issuing the OPTIONS command I got:
System 1 - Access denied.
System 2 - Home page source
Is there a better way to do this?
Is there a different way to test?
What would change this between systems?
I have put the same Directive in 2 separate system and got very different results.
Code:
<Directory / >
<LimitExcept POST GET>
Order allow,deny
deny from all
</LimitExcept>
</Directory>
When I tested by telneting to port 80 and issuing the OPTIONS command I got:
System 1 - Access denied.
System 2 - Home page source
Is there a better way to do this?
Is there a different way to test?
What would change this between systems?