Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/http/multi-http-var-sharing.yaml
2070 views
1
id: multi-http-var-sharing
2
3
info:
4
name: Multi HTTP var sharing
5
author: pdteam
6
severity: info
7
description: |
8
A template which has multiple HTTP requests block and variables are shared between them
9
10
http:
11
- method: GET
12
path:
13
- "{{BaseURL}}"
14
15
matchers:
16
- type: word
17
words:
18
- "This is test matcher text"
19
negative: true
20
internal: true
21
22
extractors:
23
- type: dsl
24
name: ffff
25
dsl:
26
- status_code
27
internal: true
28
29
- method: GET
30
path:
31
- "{{BaseURL}}/{{ffff}}"
32
33
matchers:
34
- type: status
35
status:
36
- 200
37