mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2026-04-18 04:51:00 +02:00
| .. | ||
| intruders | ||
| README.md | ||
Insecure management interface
Springboot-Actuator
Actuator endpoints let you monitor and interact with your application. Spring Boot includes a number of built-in endpoints and lets you add your own. For example, the health endpoint provides basic application health information. Some of them contains sensitive info such as /trace (by default the last 100 HTTP requests with headers), /env (the current environment properties) or /heapdump (builds and returns a heap dump from the JVM used by our application). These endpoints are enabled by default in Springboot 1.X. Since Springboot 2.x only /health and /info are enabled by default.
the official documentation is located here