Add the wordlists to the header information (#211)
* Add the wordlists to the header information (#197) * Add the requested change
This commit is contained in:
parent
404c048835
commit
7021c2f211
@ -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
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user