(byte[] response)
| 356 | |
| 357 | |
| 358 | public static byte[] getRspBody(byte[] response){ |
| 359 | IResponseInfo responseInfo = BurpExtender.helpers.analyzeResponse(response); |
| 360 | int bodyOffset = responseInfo.getBodyOffset(); |
| 361 | int body_length = response.length - bodyOffset; |
| 362 | return subBytes(response,bodyOffset,body_length); |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * 统计字符串str中有多少个字符串keyword |
no test coverage detected