var ScriptVars = Java.type("org.zaproxy.zap.extension.script.ScriptVars") ScriptVars.setScriptCustomVar(this.context, "var.name", {x: 1, y: 3}) print(ScriptVars.getScriptCustomVar(this.context, "var.name").y) // Prints 3 ScriptVars.setGlobalCustomVar("var.name", ["A", "B", "C", "D"]) print(ScriptVars.getGlobalCustomVar("var.name")[2]) // Prints C
| Introduction | the introduction to ZAP | |
| Releases | the full set of releases | |
| Credits | the people and groups who have made this release possible |