Skip to content
This repository has been archived by the owner on Aug 4, 2024. It is now read-only.

Commit

Permalink
Small Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KathanP19 committed Nov 8, 2020
1 parent efd79e0 commit d633e58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"bufio"
"bufio"
"crypto/tls"
"flag"
"fmt"
Expand Down Expand Up @@ -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)
Expand All @@ -152,4 +152,4 @@ func requestfunc(u string) (resp gorequest.Response, body string, errs []error)
End()

return resp, body, errs
}
}

0 comments on commit d633e58

Please sign in to comment.