nuclei/integration_tests/flow/flow-hide-matcher.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

29 lines
483 B
YAML

id: flow-hide-matcher
info:
name: Test Flow Hide Matcher
author: pdteam
severity: info
description: In Template any matcher can be marked as internal which hides it from the output.
flow: http(1) && http(2)
http:
- method: GET
path:
- "{{BaseURL}}"
matchers:
- type: word
words:
- ok
internal: true
- method: GET
path:
- "{{BaseURL}}"
matchers:
- type: word
words:
- "Failed event"