mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:35:26 +00:00
10 lines
205 B
Go
10 lines
205 B
Go
|
|
package contextargs
|
||
|
|
|
||
|
|
// GenerateVariables from context args
|
||
|
|
func GenerateVariables(ctx *Context) map[string]interface{} {
|
||
|
|
vars := map[string]interface{}{
|
||
|
|
"ip": ctx.MetaInput.CustomIP,
|
||
|
|
}
|
||
|
|
return vars
|
||
|
|
}
|