├── LICENSE ├── README.md ├── logs └── logfile.log ├── menu.py ├── messages.py ├── modules ├── charfuzzer.py ├── exparse.py ├── fuzzer.py ├── headeroperations.py └── manipulatingheaders.py ├── pfuzz.py ├── reqparser.py ├── reqsender.py ├── request-samples ├── GET_Sample1.txt ├── POST_Sample1.txt ├── POST_Sample2.txt └── POST_Sample3.txt ├── requirements.txt ├── static ├── headers ├── methods ├── statics.py └── waf_bypass_db.xlsx └── waflogger.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/README.md -------------------------------------------------------------------------------- /logs/logfile.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/menu.py -------------------------------------------------------------------------------- /messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/messages.py -------------------------------------------------------------------------------- /modules/charfuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/modules/charfuzzer.py -------------------------------------------------------------------------------- /modules/exparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/modules/exparse.py -------------------------------------------------------------------------------- /modules/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/modules/fuzzer.py -------------------------------------------------------------------------------- /modules/headeroperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/modules/headeroperations.py -------------------------------------------------------------------------------- /modules/manipulatingheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/modules/manipulatingheaders.py -------------------------------------------------------------------------------- /pfuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/pfuzz.py -------------------------------------------------------------------------------- /reqparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/reqparser.py -------------------------------------------------------------------------------- /reqsender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/reqsender.py -------------------------------------------------------------------------------- /request-samples/GET_Sample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/request-samples/GET_Sample1.txt -------------------------------------------------------------------------------- /request-samples/POST_Sample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/request-samples/POST_Sample1.txt -------------------------------------------------------------------------------- /request-samples/POST_Sample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/request-samples/POST_Sample2.txt -------------------------------------------------------------------------------- /request-samples/POST_Sample3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/request-samples/POST_Sample3.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/static/headers -------------------------------------------------------------------------------- /static/methods: -------------------------------------------------------------------------------- 1 | POST 2 | GET 3 | PUT 4 | PATCH 5 | DELETE -------------------------------------------------------------------------------- /static/statics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/static/statics.py -------------------------------------------------------------------------------- /static/waf_bypass_db.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/static/waf_bypass_db.xlsx -------------------------------------------------------------------------------- /waflogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/pFuzz/HEAD/waflogger.py --------------------------------------------------------------------------------