After logging into Administration Console, it is possible
to browse the console’s directory listing by modifying the URL.
For example, if you change the URL to one of the following URLs,
a directory listing may appear:
http://<servername>:8080/adminui/secured/
http://<servername>:8080/um/
To disable the directory listing, set the value of the listings
initialization parameter of the DefaultServlet property
to false as shown in bold in the [JBoss root] \server\default\deploy\jbossweb-tomcatxxx.sar\conf\web.xml
file, as shown in this example:
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>
org.apache.catalina.servlets.DefaultServlet
</servlet-class>
<init-param>
<param-name>listings</param-name><param-value>false</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>]