Using dynamic extractor with index in flow #4449
-
Nuclei version:Nuclei Engine Version: v3.0.3 Current Behavior:I want to use extractor as a dynamic variable in a flow (for example Expected Behavior:Should give me the value, as I specify the Steps To Reproduce:Example of template:
It extracts correctly the variable
Here, I want to send a request to And when I remove the line for the flow ( Am I using it badly to extract variable in a flow, or is |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @pascal-sun, id: extracted_value
info:
name: Extracted value does not work in flow
author: pascal-sun
severity: info
flow: |
http(1);
set("test2", template["test1"][0]);
http(2);
http:
- method: GET
path:
- "{{BaseURL}}"
extractors:
- type: regex
name: test1
group: 1
regex:
- 'This (domain) is for use in illustrative examples in documents.'
internal: true
matchers:
- type: status
status:
- 200
- method: GET
path:
- "https://example.org/{{test2}}"
matchers:
- type: status
status:
- 200
Seems that when running from |
Beta Was this translation helpful? Give feedback.
Hi @pascal-sun,
I think here is a solution to your problem:
Seems t…