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:
helpermika 2020-04-15 13:39:01 +03:00 committed by GitHub
parent 404c048835
commit 7021c2f211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -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)

View File

@ -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 {