nuclei-templates/misconfiguration/express-stack-trace.yaml

34 lines
594 B
YAML

id: express-stack-trace
info:
name: Express Stack Trace
author: DhiyaneshDk
severity: low
metadata:
verified: true
shodan-query: html:"Welcome to Express"
tags: misconfig,express
requests:
- method: GET
path:
- '{{BaseURL}}/{{randstr}}'
matchers-condition: and
matchers:
- type: word
part: body
words:
- "NotFoundError: Not Found"
- "at Function.handle"
condition: and
- type: word
part: header
words:
- "text/html"
- type: status
status:
- 404