MCPcopy Index your code
hub / github.com/XF-FS/APIKit / run

Method run

src/main/java/burp/application/ApiScanner.java:39–49  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

37 executor.submit(new Runnable() {
38
39 @Override
40 public void run() {
41 try {
42 ApiType apiType = (ApiType) apiTypeConstructor.apply(baseRequestResponse, isPassive);
43 if (apiType.isFingerprintMatch().booleanValue()) {
44 apiTypes.add(apiType);
45 }
46 } catch (Exception e) {
47 BurpExtender.getStderr().println(CommonUtils.exceptionToString(e));
48 }
49 }
50 });
51 }
52 executor.shutdown();

Callers

nothing calls this directly

Calls 4

isFingerprintMatchMethod · 0.95
getStderrMethod · 0.95
exceptionToStringMethod · 0.95
addMethod · 0.80

Tested by

no test coverage detected