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

Method getSqlmapPath

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

Source from the content-addressed store, hash-verified

38 }
39
40 public static String getSqlmapPath() {
41 try {
42 String val = BurpExtender.callbacks.loadExtensionSetting("SQLMAP_PATH");
43 if(val == null){
44 return Config.SQLMAP_PATH;
45 }else{
46 return val;
47 }
48 }catch(Exception e){
49 return Config.SQLMAP_PATH;
50 }
51 }
52
53 public static void setSqlmapPath(String sqlmapPath) {
54 BurpExtender.callbacks.saveExtensionSetting("SQLMAP_PATH", String.valueOf(sqlmapPath));

Callers 2

initValueMethod · 0.95
runMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected