diff options
author | Emile <hanemile@protonmail.com> | 2019-11-03 02:05:12 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-11-03 02:05:12 +0100 |
commit | c53109c41ca53e8d43c802c6af971a09d129a192 (patch) | |
tree | 0f1eef44df3a8c901f19349823a27acc74856eb3 | |
parent | 2357c3ffec5c5c700ebc86e5b8305a2137a1e32b (diff) |
the user should supply the protocol...
-rw-r--r-- | src/httpRequest.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |