WebFuzzForge / wenum

Wfuzz fork
GNU General Public License v2.0
19 stars 6 forks source link

The command line parser is a custom implementation, which can be replaced by argparse #18

Closed percepo closed 1 year ago

percepo commented 1 year ago

argparse is commonly used, and there seems to be little reason to stick with the custom implementation. It would also make possible a slightly more dynamic way of approaching the parsing of command line arguments

percepo commented 1 year ago

To maintain the possibility to also use a config file, configparser in conjunction mit setting the defaults with the read values may help: https://newini.wordpress.com/2021/06/11/how-to-import-config-file-to-argparse-using-configparser/