(IHttpRequestResponse httpRequestResponse)
| 24 | private int redirectCount = 0; |
| 25 | |
| 26 | public RedirectUtils(IHttpRequestResponse httpRequestResponse) { |
| 27 | this.currHttpRequestResponse = httpRequestResponse; |
| 28 | this.currentHttpService = httpRequestResponse.getHttpService(); |
| 29 | this.currUrl = BurpExtender.getHelpers().analyzeRequest(httpRequestResponse).getUrl().toString(); |
| 30 | } |
| 31 | |
| 32 | public static String handleRelativeRedirectedUrl(String currentUrl, String locationUrl) { |
| 33 | String result = null; |
nothing calls this directly
no test coverage detected