MCPcopy Create free account
hub / github.com/c0ny1/sqlmap4burp-plus-plus / getSqlmapOptionsCommand

Method getSqlmapOptionsCommand

src/main/java/burp/Config.java:66–77  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

64 }
65
66 public static String getSqlmapOptionsCommand() {
67 try {
68 String val = BurpExtender.callbacks.loadExtensionSetting("SQLMAP_OPTIONS_COMMAND");
69 if(val == null){
70 return Config.SQLMAP_OPTIONS_COMMAND;
71 }else{
72 return val;
73 }
74 }catch(Exception e){
75 return Config.SQLMAP_OPTIONS_COMMAND;
76 }
77 }
78
79 public static void setSqlmapOptionsCommand(String sqlmapOptionsCommand) {
80 BurpExtender.callbacks.saveExtensionSetting("SQLMAP_OPTIONS_COMMAND", String.valueOf(sqlmapOptionsCommand));

Callers 2

initValueMethod · 0.95
runMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected