mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 17:05:25 +00:00
* add randstr preprocessor to defaults * fix indexing in http + preprocessor integration test * add multi-request integration test * skip test if asnmap is down
26 lines
562 B
YAML
26 lines
562 B
YAML
id: http-multi-request
|
|
|
|
info:
|
|
name: http multi request template
|
|
author: pdteam
|
|
severity: info
|
|
description: template with multiple http request with combined logic
|
|
reference: https://example-reference-link
|
|
|
|
# requestURI is reflected back as response body here
|
|
http:
|
|
- raw:
|
|
- |
|
|
GET /ping HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
- |
|
|
GET /pong HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- 'body_1 == "ping"'
|
|
- 'body_2 == "pong"'
|
|
condition: and |