From c53109c41ca53e8d43c802c6af971a09d129a192 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 3 Nov 2019 02:05:12 +0100 Subject: the user should supply the protocol... --- src/httpRequest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpRequest.go b/src/httpRequest.go index 9ad8f9a..ddec96d 100644 --- a/src/httpRequest.go +++ b/src/httpRequest.go @@ -16,7 +16,7 @@ func httpRequest(channels channels, threadNr int) { requestURL := strings.Replace(url, "FUZZ", fuzzWord, 1) // make the http get request - resp, err := http.Get("https://" + requestURL) + resp, err := http.Get(requestURL) if err != nil { log.Println(err) } else { -- cgit 1.4.1