gitextract_30du5tiz/ ├── .flake8 ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── docker-release.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── ISSUE_TEMPLATE.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── Makefile │ ├── _templates/ │ │ └── sidebarlogo.html │ ├── conf.py │ ├── dev/ │ │ └── plugins.rst │ ├── index.rst │ ├── library/ │ │ └── guide.rst │ ├── make.bat │ └── user/ │ ├── advanced.rst │ ├── basicusage.rst │ ├── breaking.rst │ ├── getting.rst │ ├── installation.rst │ └── wfpayload.rst ├── requirements.txt ├── setup.py ├── src/ │ ├── wfencode.py │ ├── wfpayload.py │ ├── wfuzz/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── api.py │ │ ├── core.py │ │ ├── dictionaries.py │ │ ├── exception.py │ │ ├── externals/ │ │ │ ├── __init__.py │ │ │ ├── moduleman/ │ │ │ │ ├── __init__.py │ │ │ │ ├── loader.py │ │ │ │ ├── modulefilter.py │ │ │ │ ├── plugin.py │ │ │ │ └── registrant.py │ │ │ ├── reqresp/ │ │ │ │ ├── Request.py │ │ │ │ ├── Response.py │ │ │ │ ├── TextParser.py │ │ │ │ ├── Variables.py │ │ │ │ ├── __init__.py │ │ │ │ ├── cache.py │ │ │ │ └── exceptions.py │ │ │ └── settings/ │ │ │ ├── __init__.py │ │ │ └── settings.py │ │ ├── facade.py │ │ ├── factories/ │ │ │ ├── __init__.py │ │ │ ├── dictfactory.py │ │ │ ├── fuzzfactory.py │ │ │ ├── fuzzresfactory.py │ │ │ ├── payman.py │ │ │ ├── plugin_factory.py │ │ │ └── reqresp_factory.py │ │ ├── filters/ │ │ │ ├── __init__.py │ │ │ ├── ppfilter.py │ │ │ └── simplefilter.py │ │ ├── fuzzobjects.py │ │ ├── fuzzqueues.py │ │ ├── fuzzrequest.py │ │ ├── helpers/ │ │ │ ├── __init__.py │ │ │ ├── file_func.py │ │ │ ├── obj_dic.py │ │ │ ├── obj_dyn.py │ │ │ ├── obj_factory.py │ │ │ ├── str_func.py │ │ │ └── utils.py │ │ ├── mixins.py │ │ ├── myhttp.py │ │ ├── myqueues.py │ │ ├── options.py │ │ ├── plugin_api/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── mixins.py │ │ │ ├── payloadtools.py │ │ │ └── urlutils.py │ │ ├── plugins/ │ │ │ ├── __init__.py │ │ │ ├── encoders/ │ │ │ │ ├── __init__.py │ │ │ │ └── encoders.py │ │ │ ├── iterators/ │ │ │ │ ├── __init__.py │ │ │ │ └── iterations.py │ │ │ ├── payloads/ │ │ │ │ ├── __init__.py │ │ │ │ ├── autorize.py │ │ │ │ ├── bing.py │ │ │ │ ├── buffer_overflow.py │ │ │ │ ├── burpitem.py │ │ │ │ ├── burplog.py │ │ │ │ ├── burpstate.py │ │ │ │ ├── dirwalk.py │ │ │ │ ├── file.py │ │ │ │ ├── guitab.py │ │ │ │ ├── hexrand.py │ │ │ │ ├── hexrange.py │ │ │ │ ├── ipnet.py │ │ │ │ ├── iprange.py │ │ │ │ ├── list.py │ │ │ │ ├── names.py │ │ │ │ ├── permutation.py │ │ │ │ ├── range.py │ │ │ │ ├── shodanp.py │ │ │ │ ├── stdin.py │ │ │ │ └── wfuzzp.py │ │ │ ├── printers/ │ │ │ │ ├── __init__.py │ │ │ │ └── printers.py │ │ │ └── scripts/ │ │ │ ├── __init__.py │ │ │ ├── backups.py │ │ │ ├── cookies.py │ │ │ ├── cvs_extractor.py │ │ │ ├── errors.py │ │ │ ├── grep.py │ │ │ ├── headers.py │ │ │ ├── links.py │ │ │ ├── listing.py │ │ │ ├── npm_deps.py │ │ │ ├── robots.py │ │ │ ├── screenshot.py │ │ │ ├── sitemap.py │ │ │ ├── svn_extractor.py │ │ │ ├── title.py │ │ │ └── wcdb.py │ │ ├── ui/ │ │ │ ├── __init__.py │ │ │ ├── console/ │ │ │ │ ├── __init__.py │ │ │ │ ├── clparser.py │ │ │ │ ├── common.py │ │ │ │ ├── getch.py │ │ │ │ ├── mvc.py │ │ │ │ └── output.py │ │ │ └── gui/ │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── guicontrols.py │ │ │ └── model.py │ │ └── wfuzz.py │ ├── wfuzz-cli.py │ └── wxfuzz.py ├── tests/ │ ├── acceptance/ │ │ └── test_saved_filter.py │ ├── api/ │ │ ├── test_encoders.py │ │ ├── test_payload.py │ │ └── test_session.py │ ├── conftest.py │ ├── factories/ │ │ └── test_seedbasebuilder.py │ ├── filters/ │ │ ├── test_filter.py │ │ ├── test_filter_codes.py │ │ ├── test_filter_urlp.py │ │ ├── test_prefilter_mangle.py │ │ └── test_prefilter_mangle_codes.py │ ├── helpers/ │ │ ├── test_dotdict.py │ │ └── test_insensitive_dict.py │ ├── plugins/ │ │ ├── test_burplog.py │ │ ├── test_links.py │ │ └── test_summary.py │ ├── server_dir/ │ │ ├── Dockerfile │ │ ├── dir/ │ │ │ ├── a │ │ │ ├── b │ │ │ ├── c │ │ │ └── one │ │ ├── docker-compose.yml │ │ ├── iterators/ │ │ │ ├── aa │ │ │ ├── ac │ │ │ └── bb │ │ ├── plugins/ │ │ │ └── robots.txt │ │ ├── recursive_dir/ │ │ │ └── a/ │ │ │ └── b/ │ │ │ └── c/ │ │ │ └── placeholder.txt │ │ ├── simple_server.py │ │ └── static/ │ │ └── placeholder.txt │ ├── test_acceptance.py │ ├── test_api.py │ ├── test_clparser.py │ ├── test_filterintro.py │ ├── test_moduleman.py │ ├── test_relativeurl.py │ ├── test_req_parse.py │ └── test_reqresp.py ├── tox.ini ├── wfencode ├── wfencode.bat ├── wfpayload ├── wfpayload.bat ├── wfuzz ├── wfuzz.bat ├── wfuzz_bash_completion ├── wordlist/ │ ├── Injections/ │ │ ├── All_attack.txt │ │ ├── SQL.txt │ │ ├── Traversal.txt │ │ ├── XML.txt │ │ ├── XSS.txt │ │ └── bad_chars.txt │ ├── general/ │ │ ├── admin-panels.txt │ │ ├── big.txt │ │ ├── catala.txt │ │ ├── common.txt │ │ ├── euskera.txt │ │ ├── extensions_common.txt │ │ ├── http_methods.txt │ │ ├── medium.txt │ │ ├── megabeast.txt │ │ ├── mutations_common.txt │ │ ├── spanish.txt │ │ └── test.txt │ ├── others/ │ │ ├── common_pass.txt │ │ └── names.txt │ ├── stress/ │ │ ├── alphanum_case.txt │ │ ├── alphanum_case_extra.txt │ │ ├── char.txt │ │ ├── doble_uri_hex.txt │ │ ├── test_ext.txt │ │ └── uri_hex.txt │ ├── vulns/ │ │ ├── apache.txt │ │ ├── cgis.txt │ │ ├── coldfusion.txt │ │ ├── dirTraversal-nix.txt │ │ ├── dirTraversal-win.txt │ │ ├── dirTraversal.txt │ │ ├── domino.txt │ │ ├── fatwire.txt │ │ ├── fatwire_pagenames.txt │ │ ├── frontpage.txt │ │ ├── iis.txt │ │ ├── iplanet.txt │ │ ├── jrun.txt │ │ ├── netware.txt │ │ ├── oracle9i.txt │ │ ├── sharepoint.txt │ │ ├── sql_inj.txt │ │ ├── sunas.txt │ │ ├── tests.txt │ │ ├── tomcat.txt │ │ ├── vignette.txt │ │ ├── weblogic.txt │ │ └── websphere.txt │ └── webservices/ │ ├── ws-dirs.txt │ └── ws-files.txt ├── wxfuzz └── wxfuzz.bat