This commit is contained in:
AnonymousUser
2020-09-14 18:55:49 +08:00
parent 4c75fda39a
commit 53af913f41

View File

@@ -340,8 +340,7 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
boolean isExtract = jsonObj1.getBoolean("extract"); boolean isExtract = jsonObj1.getBoolean("extract");
boolean isLoaded = jsonObj1.getBoolean("loaded"); boolean isLoaded = jsonObj1.getBoolean("loaded");
if (isExtract && isLoaded) { if (isExtract && isLoaded) {
String tmpStr = String.format("[%s] %s \n", name, jsonObj1.getString("data")); String tmpStr = String.format("[%s] %s \n", name, jsonObj1.getString("data")).intern();
String tmpStr1 = new String(tmpStr).intern();
result += tmpStr; result += tmpStr;
} }
} }