diff --git a/CHANGELOG.md b/CHANGELOG.md index 540d2ad..69c6a49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - New CLI flag `-maxtime-job` to set max. execution time per job. - Changed behaviour of `-maxtime`, can now be used for entire process. - A new flag `-ignore-body` so ffuf does not fetch the response content. Default value=false. + - Added the wordlists to the header information. - Changed - Added tls renegotiation flag to fix #193 in http.Client diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0375eb5..f99522c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -7,6 +7,7 @@ * [delic](https://github.com/delic) * [eur0pa](https://github.com/eur0pa) * [fang0654](https://github.com/fang0654) +* [helpermika](https://github.com/helpermika) * [Ice3man543](https://github.com/Ice3man543) * [JamTookTheBait](https://github.com/JamTookTheBait) * [joohoi](https://github.com/joohoi) diff --git a/pkg/output/stdout.go b/pkg/output/stdout.go index da71bc1..b7730e1 100644 --- a/pkg/output/stdout.go +++ b/pkg/output/stdout.go @@ -53,6 +53,14 @@ func (s *Stdoutput) Banner() error { fmt.Printf("%s\n v%s\n%s\n\n", BANNER_HEADER, ffuf.VERSION, BANNER_SEP) printOption([]byte("Method"), []byte(s.config.Method)) printOption([]byte("URL"), []byte(s.config.Url)) + + // Print wordlists + for _, provider := range s.config.InputProviders { + if provider.Name == "wordlist" { + printOption([]byte("Wordlist"), []byte(provider.Keyword + ": " + provider.Value)) + } + } + // Print headers if len(s.config.Headers) > 0 { for k, v := range s.config.Headers {