Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/flow/flow-hide-matcher.yaml
2070 views
1
id: flow-hide-matcher
2
3
info:
4
name: Test Flow Hide Matcher
5
author: pdteam
6
severity: info
7
description: In Template any matcher can be marked as internal which hides it from the output.
8
9
flow: http(1) && http(2)
10
11
http:
12
- method: GET
13
path:
14
- "{{BaseURL}}"
15
16
matchers:
17
- type: word
18
words:
19
- ok
20
internal: true
21
22
- method: GET
23
path:
24
- "{{BaseURL}}"
25
26
matchers:
27
- type: word
28
words:
29
- "Failed event"
30