forked from projectdiscovery/nuclei-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspringboot-liquidbase.yaml
41 lines (36 loc) · 1009 Bytes
/
springboot-liquidbase.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
id: springboot-liquidbase
info:
name: Springboot Liquidbase API
author: ELSFA7110
severity: low
description: This liquibase endpoint provides information about database changes
reference:
- https://docs.spring.io/spring-boot/docs/current/actuator-api/htmlsingle/#liquibase
metadata:
verified: true
tags: misconfig,springboot,exposure,liquibase
requests:
- method: GET
path:
- "{{BaseURL}}/liquibase"
- "{{BaseURL}}/actuator/liquibase"
stop-at-first-match: true
matchers-condition: and
matchers:
- type: word
part: body
words:
- 'liquibase'
- '"FILENAME":"'
condition: and
- type: word
part: header
words:
- "application/json"
- "application/vnd.spring-boot.actuator"
- "application/vnd.spring-boot.actuator.v1+json"
- "application/vnd.spring-boot.actuator.v2+json"
condition: or
- type: status
status:
- 200