Information
Servlets can be served by class name or via a normal URL alias.
Serving servlets by class name allows anyone that knows the class name of any servlet to invoke it directly which leads to a security exposure from possible misuse of the servlet.
Solution
Add the disallowServeServletsByClassName attribute on the webContainer element in ${server.config.dir}/configDropins/overrides/*.xml and set it to true
<webContainer disallowServeServletsByClassName="true"/>
If serving servlets by class name is set at the application level, update the webApplication elements or ibm-web-ext files.