33 lines
698 B
YAML
33 lines
698 B
YAML
id: appsec-yml-disclosure
|
|
|
|
info:
|
|
name: Appsec Yml Disclosure
|
|
author: dhiyaneshDk
|
|
severity: medium
|
|
reference: https://github.com/detectify/ugly-duckling/blob/master/modules/crowdsourced/appsec-yml-disclosure.json
|
|
tags: exposure,config
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/appspec.yml"
|
|
- "{{BaseURL}}/appspec.yaml"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "version:"
|
|
- "os:"
|
|
- "files:"
|
|
- "source:"
|
|
part: body
|
|
condition: and
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- application/yaml
|
|
- type: status
|
|
status:
|
|
- 200
|