├── README.md ├── core ├── __init__.py ├── argument_parser.py ├── detection.py ├── fuzzer.py ├── helper.py ├── hpp_lib.py ├── http_helper.py ├── obfuscation_lib.py ├── param_source_detector.py ├── placeholder_length.py ├── placeholder_manager.py ├── response_analyzer.py └── template_parser.py ├── payloads ├── HTTP │ ├── content_types.txt │ └── methods.txt └── HTTPmethods │ └── methods.txt └── wafbypasser.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/argument_parser.py -------------------------------------------------------------------------------- /core/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/detection.py -------------------------------------------------------------------------------- /core/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/fuzzer.py -------------------------------------------------------------------------------- /core/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/helper.py -------------------------------------------------------------------------------- /core/hpp_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/hpp_lib.py -------------------------------------------------------------------------------- /core/http_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/http_helper.py -------------------------------------------------------------------------------- /core/obfuscation_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/obfuscation_lib.py -------------------------------------------------------------------------------- /core/param_source_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/param_source_detector.py -------------------------------------------------------------------------------- /core/placeholder_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/placeholder_length.py -------------------------------------------------------------------------------- /core/placeholder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/placeholder_manager.py -------------------------------------------------------------------------------- /core/response_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/response_analyzer.py -------------------------------------------------------------------------------- /core/template_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/core/template_parser.py -------------------------------------------------------------------------------- /payloads/HTTP/content_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/payloads/HTTP/content_types.txt -------------------------------------------------------------------------------- /payloads/HTTP/methods.txt: -------------------------------------------------------------------------------- 1 | GET 2 | HEAD 3 | POST 4 | PUT 5 | OPTIONS 6 | -------------------------------------------------------------------------------- /payloads/HTTPmethods/methods.txt: -------------------------------------------------------------------------------- 1 | GET 2 | HEAD 3 | POST 4 | PUT 5 | OPTIONS 6 | -------------------------------------------------------------------------------- /wafbypasser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owtf/wafbypasser/HEAD/wafbypasser.py --------------------------------------------------------------------------------