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
@ -8,6 +8,7 @@
|
|||||||
- Changed
|
- Changed
|
||||||
- Fixed an issue where output file was created regardless of `-or`
|
- 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 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
|
- v1.3.1
|
||||||
- New
|
- New
|
||||||
|
|||||||
1
main.go
1
main.go
@ -55,6 +55,7 @@ func ParseFlags(opts *ffuf.ConfigOptions) *ffuf.ConfigOptions {
|
|||||||
autocalibrationstrings = opts.General.AutoCalibrationStrings
|
autocalibrationstrings = opts.General.AutoCalibrationStrings
|
||||||
headers = opts.HTTP.Headers
|
headers = opts.HTTP.Headers
|
||||||
inputcommands = opts.Input.Inputcommands
|
inputcommands = opts.Input.Inputcommands
|
||||||
|
wordlists = opts.Input.Wordlists
|
||||||
|
|
||||||
flag.BoolVar(&ignored, "compressed", true, "Dummy flag for copy as curl functionality (ignored)")
|
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)")
|
flag.BoolVar(&ignored, "i", true, "Dummy flag for copy as curl functionality (ignored)")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user