Forum Moderators: DixonJones
CONNECT 195.169.138.#*$!:7000 HTTP/1.0" 405 235 "-" "-"
POST [195.169.138.#*$!:7000...] HTTP/1.0" 200 1771 "-"
some are logged in the reverse order, thusly...
POST [195.35.83.#*$!:6667...] HTTP/1.0" 200 1771 "-"
CONNECT 195.35.83.xxx:6667 HTTP/1.0" 405 235 "-" "-"
Should I be concerned by this behaviour? Is there a way to disallow POST requests in Apache? I've seen how to disable them via htaccess, but none via apache conf file.
Any help greatly appreciated.
--
Lester
405 Method Not AllowedThe method specified in the Request-Line is not allowed for the resource identified by the Request-URI. The response MUST include an Allow header containing a list of valid methods for the requested resource.
The methods to block POSTs in httpd.conf are identical to those used in .htaccess.
Jim
Here's a snippet from conf file
<Directory />
Options FollowSymLinks
AllowOverride None
# 2005-11-26. LKL. disallow POST requests
<Limit POST>
Order deny,allow
Deny from all
</Limit>
</Directory>