mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-19 02:45:25 +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
|
|
}
|