nuclei/integration_tests/flow/conditional-flow-negative.yaml
Tarun Koyalwar 02a9b86dd7
fix missing results in flow template + feature: internal matchers using internal: true (#4582)
* log warnings + use scanContext in flow

* refactor flow to use scanContext + log all events

* feat: internal matcher

* fix integration test

* bug fix extractor: merge dynamic values, fix missing extractors in file

* flow: fix 'No Results Found' if last statement output is false

* fix unit test
2024-01-08 05:12:11 +05:30

28 lines
382 B
YAML

id: ghost-blog-detection
info:
name: Ghost blog detection
author: pdteam
severity: info
flow: dns() && http()
dns:
- name: "{{FQDN}}"
type: CNAME
matchers:
- type: word
words:
- "ghost.io"
internal: true
http:
- method: GET
path:
- "{{BaseURL}}"
matchers:
- type: word
words:
- "ghost.io"