mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 17:56:56 +00:00
* handle 1 more edgecase * add integration test for this edgecase * fix multi-http-var-sharing with integration test * add -payload-concurrency (-pc) flag * fix missing internal:true login in multiprotocol engine * fix/handle absolute invalid url parsing * support -pc & -jc in go sdk * fix missing variables in code protocol operators * add payload count parallelhttp check
36 lines
642 B
YAML
36 lines
642 B
YAML
id: multi-http-var-sharing
|
|
|
|
info:
|
|
name: Multi HTTP var sharing
|
|
author: pdteam
|
|
severity: info
|
|
description: |
|
|
A template which has multiple HTTP requests block and variables are shared between them
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "This is test matcher text"
|
|
negative: true
|
|
internal: true
|
|
|
|
extractors:
|
|
- type: dsl
|
|
name: ffff
|
|
dsl:
|
|
- status_code
|
|
internal: true
|
|
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/{{ffff}}"
|
|
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200 |