35 lines
738 B
YAML
35 lines
738 B
YAML
|
id: springboot-gateway
|
||
|
|
||
|
info:
|
||
|
name: Detect Spring Gateway Actuator
|
||
|
author: wdahlenb
|
||
|
severity: medium
|
||
|
description: Sensitive environment variables may not be masked
|
||
|
tags: springboot,exposure
|
||
|
reference: https://wya.pl/2021/12/20/bring-your-own-ssrf-the-gateway-actuator/
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}/gateway/routes"
|
||
|
- "{{BaseURL}}/actuator/gateway/routes"
|
||
|
|
||
|
stop-at-first-match: true
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- "predicate"
|
||
|
- "route_id"
|
||
|
condition: and
|
||
|
|
||
|
- type: word
|
||
|
part: header
|
||
|
words:
|
||
|
- "application/json"
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|