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

Method exceptionToString

src/main/java/burp/utils/CommonUtils.java:160–165  ·  view source on GitHub ↗
(Throwable throwable)

Source from the content-addressed store, hash-verified

158 }
159
160 public static String exceptionToString(Throwable throwable) {
161 StringWriter sw = new StringWriter();
162 PrintWriter pw = new PrintWriter(sw);
163 throwable.printStackTrace(pw);
164 return sw.toString();
165 }
166
167 public static Boolean isUnAuthResponse(IHttpRequestResponse httpRequestResponse) {
168 short statusCode = BurpExtender.getHelpers().analyzeResponse(httpRequestResponse.getResponse()).getStatusCode();

Callers 6

sendRequestMethod · 0.95
runMethod · 0.95
clearScanStateMethod · 0.95
urlAddPathMethod · 0.95
parseApiDocumentMethod · 0.95
parseApiDocumentMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected