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

Method getHttpResponseBody

src/main/java/burp/utils/CommonUtils.java:137–142  ·  view source on GitHub ↗
(byte[] response)

Source from the content-addressed store, hash-verified

135 }
136
137 public static byte[] getHttpResponseBody(byte[] response) {
138 int bodyOffset = -1;
139 IResponseInfo analyzeResponse = BurpExtender.getHelpers().analyzeResponse(response);
140 bodyOffset = analyzeResponse.getBodyOffset();
141 return Arrays.copyOfRange(response, bodyOffset, response.length);
142 }
143
144 @SuppressWarnings("unchecked")
145 public static <E> E randomChoice(Collection<? extends E> input) {

Callers 8

urlAddPathMethod · 0.95
parseApiDocumentMethod · 0.95
urlAddPathMethod · 0.95
urlAddPathMethod · 0.95
parseApiDocumentMethod · 0.95
urlAddPathMethod · 0.95
urlAddPathMethod · 0.95
parseApiDocumentMethod · 0.95

Calls 1

getHelpersMethod · 0.95

Tested by

no test coverage detected