Tomcat
Introduction
├── bin ----------------------> The bin folder stores scripts and binaries needed to start and run a Tomcat server.
├── conf ---------------------> The conf folder stores various configuration files used by Tomcat.
│ ├── catalina.policy
│ ├── catalina.properties
│ ├── context.xml
│ ├── tomcat-users.xml -----> Stores user credentials and roles. Allows/disallows access to /manager and /host-manager admin pages
│ ├── tomcat-users.xsd
│ └── web.xml
├── lib ----------------------> The lib folder holds the various JAR files needed for the correct functioning of Tomcat.
├── logs ---------------------> The logs and temp folders store temporary log files
├── temp ---------------------> The logs and temp folders store temporary log files
├── webapps ------------------> The webapps folder is the default webroot of Tomcat and hosts all the applications.
├── images
├── index.jsp
├── META-INF
│ └── context.xml
├── status.xsd
└── WEB-INF
| ├── jsp
| | └── admin.jsp
| └── web.xml --------------> Contains sensitive information. Stores information about the mechanisms underlying the application
| └── lib
| | └── jdbc_drivers.jar
| └── classes --------------> All compiled classes used by the application
| └── AdminServlet.class
|
└── work ---------------------> The work folder acts as a cache and is used to store data during runtime.
└── Catalina
└── localhostFootprinting & Enumeration
Command
Description
Tomcat Manager Attacks
Path Traversal via misconfigured Reverse Proxy
Unauthenticated LFI - GhostCat
Attacking Tomcat-CGI [Windows]
Last updated