z12345
z12345

Reputation: 2216

Disable HTTP methods in Tomcat

I have read these questions on disabling a list of methods in Tomcat:

But is there a way to return a 405 response instead of a 403 response?

Upvotes: 0

Views: 9742

Answers (1)

z12345
z12345

Reputation: 2216

Build a servlet filter that checks the request method and sends a 405 response if the method is on a blacklist.

Upvotes: 2

Related Questions