public ApiResponse policies(String scanpolicyname, String policyid) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); map.put("scanPolicyName", scanpolicyname); map.put("policyId", policyid); return api.callApi("ascan", "view", "policies", map); }
public ApiResponse removeAllScans(String apikey) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } return api.callApi("ascan", "action", "removeAllScans", map); }
public ApiResponse clearExcludedFromScan(String apikey) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } return api.callApi("ascan", "action", "clearExcludedFromScan", map); }
public ApiResponse excludeFromScan(String apikey, String regex) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("regex", regex); return api.callApi("ascan", "action", "excludeFromScan", map); }
public ApiResponse setOptionThreadPerHost(String apikey, int i) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("Integer", Integer.toString(i)); return api.callApi("ascan", "action", "setOptionThreadPerHost", map); }
public ApiResponse setEnabledPolicies(String apikey, String ids) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("ids", ids); return api.callApi("ascan", "action", "setEnabledPolicies", map); }
public ApiResponse addScanPolicy(String apikey, String scanpolicyname) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("scanPolicyName", scanpolicyname); return api.callApi("ascan", "action", "addScanPolicy", map); }
public ApiResponse setOptionAttackPolicy(String apikey, String string) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("String", string); return api.callApi("ascan", "action", "setOptionAttackPolicy", map); }
public ApiResponse removeScan(String apikey, String scanid) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("scanId", scanid); return api.callApi("ascan", "action", "removeScan", map); }
public ApiResponse setOptionInjectPluginIdInHeader(String apikey, boolean bool) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("Boolean", Boolean.toString(bool)); return api.callApi("ascan", "action", "setOptionInjectPluginIdInHeader", map); }
public ApiResponse setOptionShowAdvancedDialog(String apikey, boolean bool) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("Boolean", Boolean.toString(bool)); return api.callApi("ascan", "action", "setOptionShowAdvancedDialog", map); }
public ApiResponse setOptionPromptToClearFinishedScans(String apikey, boolean bool) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("Boolean", Boolean.toString(bool)); return api.callApi("ascan", "action", "setOptionPromptToClearFinishedScans", map); }
public ApiResponse setScannerAlertThreshold( String apikey, String id, String alertthreshold, String scanpolicyname) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("id", id); map.put("alertThreshold", alertthreshold); map.put("scanPolicyName", scanpolicyname); return api.callApi("ascan", "action", "setScannerAlertThreshold", map); }
public ApiResponse setScannerAttackStrength( String apikey, String id, String attackstrength, String scanpolicyname) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("id", id); map.put("attackStrength", attackstrength); map.put("scanPolicyName", scanpolicyname); return api.callApi("ascan", "action", "setScannerAttackStrength", map); }
public ApiResponse scan( String apikey, String url, String recurse, String inscopeonly, String scanpolicyname, String method, String postdata) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("url", url); map.put("recurse", recurse); map.put("inScopeOnly", inscopeonly); map.put("scanPolicyName", scanpolicyname); map.put("method", method); map.put("postData", postdata); return api.callApi("ascan", "action", "scan", map); }
/** * Active Scans from the perspective of a User, obtained using the given Context ID and User ID. * See 'scan' action for more details. */ public ApiResponse scanAsUser( String apikey, String url, String contextid, String userid, String recurse, String scanpolicyname, String method, String postdata) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); if (apikey != null) { map.put("apikey", apikey); } map.put("url", url); map.put("contextId", contextid); map.put("userId", userid); map.put("recurse", recurse); map.put("scanPolicyName", scanpolicyname); map.put("method", method); map.put("postData", postdata); return api.callApi("ascan", "action", "scanAsUser", map); }
public ApiResponse optionPromptInAttackMode() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionPromptInAttackMode", map); }
public ApiResponse optionMaxScansInUI() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionMaxScansInUI", map); }
public ApiResponse optionTargetParamsInjectable() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionTargetParamsInjectable", map); }
public ApiResponse optionShowAdvancedDialog() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionShowAdvancedDialog", map); }
public ApiResponse optionPromptToClearFinishedScans() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionPromptToClearFinishedScans", map); }
public ApiResponse alertsIds(String scanid) throws ClientApiException { Map<String, String> map = null; map = new HashMap<String, String>(); map.put("scanId", scanid); return api.callApi("ascan", "view", "alertsIds", map); }
public ApiResponse scanPolicyNames() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "scanPolicyNames", map); }
public ApiResponse optionAllowAttackOnStart() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionAllowAttackOnStart", map); }
public ApiResponse optionMaxResultsToList() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionMaxResultsToList", map); }
public ApiResponse optionInjectPluginIdInHeader() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionInjectPluginIdInHeader", map); }
public ApiResponse excludedFromScan() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "excludedFromScan", map); }
public ApiResponse optionThreadPerHost() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionThreadPerHost", map); }
public ApiResponse attackModeQueue() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "attackModeQueue", map); }
public ApiResponse optionMaxChartTimeInMins() throws ClientApiException { Map<String, String> map = null; return api.callApi("ascan", "view", "optionMaxChartTimeInMins", map); }