diff --git a/reporter/http.go b/reporter/http.go index 7f78e030..9b0d79d9 100644 --- a/reporter/http.go +++ b/reporter/http.go @@ -11,7 +11,7 @@ import ( // HTTPRequestWriter writes results to HTTP request type HTTPRequestWriter struct { - Proxy string + URL string } // Write sends results as HTTP response @@ -21,7 +21,7 @@ func (w HTTPRequestWriter) Write(rs ...models.ScanResult) (err error) { if err := json.NewEncoder(b).Encode(r); err != nil { return err } - _, err = http.Post(w.Proxy, "application/json; charset=utf-8", b) + _, err = http.Post(w.URL, "application/json; charset=utf-8", b) if err != nil { return err } diff --git a/subcmds/report.go b/subcmds/report.go index 3bcef449..6a67bda1 100644 --- a/subcmds/report.go +++ b/subcmds/report.go @@ -283,7 +283,7 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} } if p.toHTTP { - reports = append(reports, reporter.HTTPRequestWriter{Proxy: config.Conf.HTTPProxy}) + reports = append(reports, reporter.HTTPRequestWriter{URL: config.Conf.HTTP.URL}) } if p.toLocalFile {