diff --git a/src/burp/ParamAttack.java b/src/burp/ParamAttack.java index 4bff668..0da2027 100644 --- a/src/burp/ParamAttack.java +++ b/src/burp/ParamAttack.java @@ -103,7 +103,7 @@ IHttpRequestResponse getBaseRequestResponse() { this.stop = stop; this.config = config; this.baseRequestResponse = baseRequestResponse; - targetURL = baseRequestResponse.getHttpService().getHost(); + targetURL = Utilities.analyzeRequest(baseRequestResponse).getUrl().toString(); params = calculatePayloads(baseRequestResponse, paramGrabber, type); valueParams = new ArrayList<>(); for(int i = 0; i< params.size(); i++) {