From 0af71a7fe967f149b6ff2b1030c5544f1a336e3c Mon Sep 17 00:00:00 2001 From: Emile Date: Sat, 2 Nov 2019 16:52:22 +0100 Subject: renamed file --- src/httpRequest.go | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/httpRequest.go (limited to 'src/httpRequest.go') diff --git a/src/httpRequest.go b/src/httpRequest.go new file mode 100644 index 0000000..12a8a6d --- /dev/null +++ b/src/httpRequest.go @@ -0,0 +1,35 @@ +package main + +import ( + "log" + "net/http" + "strings" +) + +func httpRequest(wordlistChannel chan string, printChannel chan Response, doneChannel chan int, threadNr int) { + for { + // replace the first instance of "FUZZ" in the given url by the next + // value from the wordlistChannel + fuzzWord := <-wordlistChannel + requestURL := strings.Replace(url, "FUZZ", fuzzWord, 1) + + // make the http get request + resp, err := http.Get("https://" + requestURL) + if err != nil { + log.Println(err) + } + + // define the response + var response = Response{ + StatusCode: resp.StatusCode, + FuzzWord: fuzzWord, + } + + // insert the response into the print channel for further printing + printChannel <- response + } + + if doneChannel != nil { + doneChannel <- threadNr + } +} -- cgit 1.4.1