(byte[] response)
| 218 | |
| 219 | |
| 220 | public static byte[] getRspBody(byte[] response){ |
| 221 | IResponseInfo responseInfo = BurpExtender.helpers.analyzeResponse(response); |
| 222 | int bodyOffset = responseInfo.getBodyOffset(); |
| 223 | int body_length = response.length - bodyOffset; |
| 224 | return subBytes(response,bodyOffset,body_length); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * 统计字符串str中有多少个字符串keyword |
no test coverage detected