mirror of
https://github.com/ffuf/ffuf
synced 2024-11-10 06:04:17 +00:00
Fix reading wordlists from cfg (#511)
* Fix issue with wordlists being defined in the ffufrc file * Add changelog entry
This commit is contained in:
parent
3cc6557fc4
commit
2fdbd25655
2 changed files with 2 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
- Changed
|
||||
- Fixed an issue where output file was created regardless of `-or`
|
||||
- Fixed an issue where output (often a lot of it) would be printed after entering interactive mode
|
||||
- Fixed an issue when reading wordlist files from ffufrc
|
||||
|
||||
- v1.3.1
|
||||
- New
|
||||
|
|
1
main.go
1
main.go
|
@ -55,6 +55,7 @@ func ParseFlags(opts *ffuf.ConfigOptions) *ffuf.ConfigOptions {
|
|||
autocalibrationstrings = opts.General.AutoCalibrationStrings
|
||||
headers = opts.HTTP.Headers
|
||||
inputcommands = opts.Input.Inputcommands
|
||||
wordlists = opts.Input.Wordlists
|
||||
|
||||
flag.BoolVar(&ignored, "compressed", true, "Dummy flag for copy as curl functionality (ignored)")
|
||||
flag.BoolVar(&ignored, "i", true, "Dummy flag for copy as curl functionality (ignored)")
|
||||
|
|
Loading…
Reference in a new issue