Skip to content

Commit 27e0adc

Browse files
committed
v1.0.12
1 parent 21baf19 commit 27e0adc

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

funcs/run/runner.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
"github.com/ImAyrix/fallparams/funcs/parameters"
88
"github.com/ImAyrix/fallparams/funcs/utils"
99
"github.com/ImAyrix/fallparams/funcs/validate"
10-
"github.com/projectdiscovery/gologger"
1110
"net/http"
1211
"os"
1312
"regexp"
@@ -59,7 +58,7 @@ func Start(channel chan string, myOptions *opt.Options, wg *sync.WaitGroup) {
5958
for _, i := range utils.Unique(Do(v, myOptions)) {
6059
if len(i) <= myOptions.MaxLength && len(i) >= myOptions.MinLength {
6160
if myOptions.SilentMode {
62-
gologger.Print().Msg(i)
61+
fmt.Println(i)
6362
}
6463
if myOptions.OutputFile != "parameters.txt" || !myOptions.SilentMode {
6564
file, err := os.OpenFile(myOptions.OutputFile, os.O_APPEND|os.O_WRONLY, 0666)

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var (
1616
)
1717

1818
const (
19-
VERSION = "1.0.11"
19+
VERSION = "1.0.12"
2020
)
2121

2222
func ReadFlags() *goflags.FlagSet {

0 commit comments

Comments
 (0)