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

35 lines
619 B
YAML
Raw Normal View History

2022-10-23 20:17:47 +00:00
id: express-stack-trace
info:
name: Express Stack Trace
author: DhiyaneshDk
severity: low
metadata:
verified: true
2023-10-14 11:27:55 +00:00
max-request: 1
2022-10-23 20:17:47 +00:00
shodan-query: html:"Welcome to Express"
2023-10-14 11:27:55 +00:00
tags: misconfig,express,intrusive
2022-10-23 20:17:47 +00:00
http:
2022-10-23 20:17:47 +00:00
- 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