mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 18:15:28 +00:00
25 lines
1.1 KiB
Go
25 lines
1.1 KiB
Go
|
|
package variables
|
||
|
|
|
||
|
|
// There are total 5 sources of variables
|
||
|
|
// 1. VariablesMap - Variables defined in the template (available at Request.options.Variables in protocols)
|
||
|
|
// 2. PayloadsMap - Payloads defined in the template (available at Request.generator in protocols)
|
||
|
|
// 3. OptionsMap - Variables passed using CLI Options (+ Env) (available at generators.BuildPayloadFromOptions)
|
||
|
|
// 4. DynamicMap - Variables Obtained by extracting data from templates (available at Request.ExecuteWithResults + merged with previous internalEvent)
|
||
|
|
// 5. ProtocolMap - Variables generated by Evaluation Request / Responses of xyz protocol (available in Request.Make)
|
||
|
|
|
||
|
|
// As we can tell , all variables sources are not linear i.e why they need to re-evaluated
|
||
|
|
// consider example
|
||
|
|
// variables:
|
||
|
|
// - name: "username@{{Host}}"
|
||
|
|
|
||
|
|
// Linear Sources (once obtained no need to re-evaluate)
|
||
|
|
// simply put they don't contain references to other variables
|
||
|
|
// 1. OptionsMap
|
||
|
|
// 2. DynamicMap
|
||
|
|
// 3. ProtocolMap
|
||
|
|
|
||
|
|
// Non-Linear Sources (need to re-evaluate)
|
||
|
|
// 1. VariablesMap
|
||
|
|
// 2. PayloadsMap
|
||
|
|
// Everytime Linear Sources are updated , Non-Linear Sources need to be re-evaluated
|