Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/http/multi-request.yaml
2070 views
1
id: http-multi-request
2
3
info:
4
name: http multi request template
5
author: pdteam
6
severity: info
7
description: template with multiple http request with combined logic
8
reference: https://example-reference-link
9
10
# requestURI is reflected back as response body here
11
http:
12
- raw:
13
- |
14
GET /ping HTTP/1.1
15
Host: {{Hostname}}
16
17
- |
18
GET /pong HTTP/1.1
19
Host: {{Hostname}}
20
21
matchers:
22
- type: dsl
23
dsl:
24
- 'body_1 == "ping"'
25
- 'body_2 == "pong"'
26
condition: and
27