I have a web project deployed in Tomcat.
I have run various tests including security tool tests.
One of the tests reported that using OPTIONS
it was possible to detect acceptable HTTP
requests per application URL.
My question is how can I disable this feature?
I am not sure why this happens. The servlets implement the POST
but not the rest of the methods.
Is this programming issue? Should I have overriden doOptions
for example, or can I configure something in Tomcat instance and get away with it?
Thanks