From d633e5813e6f1d8af23ae4d58f6fa293de10381f Mon Sep 17 00:00:00 2001 From: Kali Date: Sun, 8 Nov 2020 06:08:21 -0500 Subject: [PATCH] Small Bug Fix --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 5475620..5cf4364 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "bufio" + "bufio" "crypto/tls" "flag" "fmt" @@ -127,7 +127,7 @@ func checkreflection(link string) { fmt.Printf("Url : %q\n", u) fmt.Printf("Reflected Param : %q\n", key) } else { - fmt.Printf(u.String() + "\n") + fmt.Fprint(os.Stderr, u.String()+"\n") } if outputFile != "" { f, err := os.OpenFile(outputFile, os.O_APPEND|os.O_WRONLY, 0644) @@ -152,4 +152,4 @@ func requestfunc(u string) (resp gorequest.Response, body string, errs []error) End() return resp, body, errs -} \ No newline at end of file +}