mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2025-01-18 17:28:49 +00:00
Merge pull request #34 from Fisjkars/master
Add Springboot actuator intruder
This commit is contained in:
commit
e096d10a30
9
Insecure management interface/README.md
Normal file
9
Insecure management interface/README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# 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](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html)
|
||||||
|
|
||||||
|
## Thanks to
|
@ -0,0 +1,52 @@
|
|||||||
|
auditevents
|
||||||
|
autoconfig
|
||||||
|
beans
|
||||||
|
caches
|
||||||
|
conditions
|
||||||
|
configprops
|
||||||
|
dump
|
||||||
|
env
|
||||||
|
flyway
|
||||||
|
health
|
||||||
|
heapdump
|
||||||
|
httptrace
|
||||||
|
info
|
||||||
|
integrationgraph
|
||||||
|
jolokia
|
||||||
|
logfile
|
||||||
|
loggers
|
||||||
|
liquibase
|
||||||
|
metrics
|
||||||
|
mappings
|
||||||
|
prometheus
|
||||||
|
scheduledtasks
|
||||||
|
sessions
|
||||||
|
shutdown
|
||||||
|
threaddump
|
||||||
|
trace
|
||||||
|
actuator/auditevents
|
||||||
|
actuator/autoconfig
|
||||||
|
actuator/beans
|
||||||
|
actuator/caches
|
||||||
|
actuator/conditions
|
||||||
|
actuator/configprops
|
||||||
|
actuator/dump
|
||||||
|
actuator/env
|
||||||
|
actuator/flyway
|
||||||
|
actuator/health
|
||||||
|
actuator/heapdump
|
||||||
|
actuator/httptrace
|
||||||
|
actuator/info
|
||||||
|
actuator/integrationgraph
|
||||||
|
actuator/jolokia
|
||||||
|
actuator/logfile
|
||||||
|
actuator/loggers
|
||||||
|
actuator/liquibase
|
||||||
|
actuator/metrics
|
||||||
|
actuator/mappings
|
||||||
|
actuator/prometheus
|
||||||
|
actuator/scheduledtasks
|
||||||
|
actuator/sessions
|
||||||
|
actuator/shutdown
|
||||||
|
actuator/threaddump
|
||||||
|
actuator/trace
|
Loading…
Reference in New Issue
Block a user