├── Conf Example ├── extra │ ├── httpd-autoindex.conf │ ├── httpd-dav.conf │ ├── httpd-default.conf │ ├── httpd-info.conf │ ├── httpd-languages.conf │ ├── httpd-macro.conf │ ├── httpd-manual.conf │ ├── httpd-mpm.conf │ ├── httpd-multilang-errordoc.conf │ ├── httpd-policy.conf │ ├── httpd-ssl.conf │ ├── httpd-userdir.conf │ ├── httpd-vhosts.conf │ └── proxy-html.conf ├── htdigest ├── httpd.conf ├── magic ├── mime.types ├── passwd └── passwd_digest ├── Custom Grammars └── http.json ├── Custom mutators ├── Bruteforce_tests.c ├── Dict_tests.c ├── Line_Swapping.c ├── Mutators_aux.c ├── Other tests.c ├── Word_Swapping.c └── aux_new.h ├── Dictionaries └── http_request_fuzzer.dict.txt ├── Input Case ├── test.txt ├── test1.txt ├── test10.txt ├── test11.txt ├── test12.txt ├── test13.txt ├── test14.txt ├── test15.txt ├── test16.txt ├── test17.txt ├── test18.txt ├── test19.txt ├── test2.txt ├── test20.txt ├── test21.txt ├── test22.txt ├── test23.txt ├── test24.txt ├── test25.txt ├── test3.txt ├── test4.txt ├── test5.txt ├── test6.txt ├── test7.txt ├── test8.txt └── test9.txt ├── Patches ├── Patch1.patch └── Patch2.patch ├── README.md ├── RomHack Presentation.pdf └── WebDav └── testWebDav.txt /Conf Example/extra/httpd-autoindex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-autoindex.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-dav.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-dav.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-default.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-info.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-languages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-languages.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-macro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-macro.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-manual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-manual.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-mpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-mpm.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-multilang-errordoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-multilang-errordoc.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-policy.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-ssl.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-userdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-userdir.conf -------------------------------------------------------------------------------- /Conf Example/extra/httpd-vhosts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/httpd-vhosts.conf -------------------------------------------------------------------------------- /Conf Example/extra/proxy-html.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/extra/proxy-html.conf -------------------------------------------------------------------------------- /Conf Example/htdigest: -------------------------------------------------------------------------------- 1 | 2:private area:f7165d3e3a2edc6ed7e0e136e8ffa359 2 | -------------------------------------------------------------------------------- /Conf Example/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/httpd.conf -------------------------------------------------------------------------------- /Conf Example/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/magic -------------------------------------------------------------------------------- /Conf Example/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Conf Example/mime.types -------------------------------------------------------------------------------- /Conf Example/passwd: -------------------------------------------------------------------------------- 1 | 2:$apr1$hikjwmdl$8ygiQzmxwDB8I2ZKB1ZLU0 2 | -------------------------------------------------------------------------------- /Conf Example/passwd_digest: -------------------------------------------------------------------------------- 1 | 2:admin:a81c853eb91fa6a4ceef6ee3b5a48892 2 | -------------------------------------------------------------------------------- /Custom Grammars/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom Grammars/http.json -------------------------------------------------------------------------------- /Custom mutators/Bruteforce_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/Bruteforce_tests.c -------------------------------------------------------------------------------- /Custom mutators/Dict_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/Dict_tests.c -------------------------------------------------------------------------------- /Custom mutators/Line_Swapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/Line_Swapping.c -------------------------------------------------------------------------------- /Custom mutators/Mutators_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/Mutators_aux.c -------------------------------------------------------------------------------- /Custom mutators/Other tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/Other tests.c -------------------------------------------------------------------------------- /Custom mutators/Word_Swapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/Word_Swapping.c -------------------------------------------------------------------------------- /Custom mutators/aux_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Custom mutators/aux_new.h -------------------------------------------------------------------------------- /Dictionaries/http_request_fuzzer.dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Dictionaries/http_request_fuzzer.dict.txt -------------------------------------------------------------------------------- /Input Case/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test.txt -------------------------------------------------------------------------------- /Input Case/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test1.txt -------------------------------------------------------------------------------- /Input Case/test10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test10.txt -------------------------------------------------------------------------------- /Input Case/test11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test11.txt -------------------------------------------------------------------------------- /Input Case/test12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test12.txt -------------------------------------------------------------------------------- /Input Case/test13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test13.txt -------------------------------------------------------------------------------- /Input Case/test14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test14.txt -------------------------------------------------------------------------------- /Input Case/test15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test15.txt -------------------------------------------------------------------------------- /Input Case/test16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test16.txt -------------------------------------------------------------------------------- /Input Case/test17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test17.txt -------------------------------------------------------------------------------- /Input Case/test18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test18.txt -------------------------------------------------------------------------------- /Input Case/test19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test19.txt -------------------------------------------------------------------------------- /Input Case/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test2.txt -------------------------------------------------------------------------------- /Input Case/test20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test20.txt -------------------------------------------------------------------------------- /Input Case/test21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test21.txt -------------------------------------------------------------------------------- /Input Case/test22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test22.txt -------------------------------------------------------------------------------- /Input Case/test23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test23.txt -------------------------------------------------------------------------------- /Input Case/test24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test24.txt -------------------------------------------------------------------------------- /Input Case/test25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test25.txt -------------------------------------------------------------------------------- /Input Case/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test3.txt -------------------------------------------------------------------------------- /Input Case/test4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test4.txt -------------------------------------------------------------------------------- /Input Case/test5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test5.txt -------------------------------------------------------------------------------- /Input Case/test6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test6.txt -------------------------------------------------------------------------------- /Input Case/test7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test7.txt -------------------------------------------------------------------------------- /Input Case/test8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test8.txt -------------------------------------------------------------------------------- /Input Case/test9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Input Case/test9.txt -------------------------------------------------------------------------------- /Patches/Patch1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Patches/Patch1.patch -------------------------------------------------------------------------------- /Patches/Patch2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/Patches/Patch2.patch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apache-HTTP-Fuzzing -------------------------------------------------------------------------------- /RomHack Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/RomHack Presentation.pdf -------------------------------------------------------------------------------- /WebDav/testWebDav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-morales/Apache-HTTP-Fuzzing/HEAD/WebDav/testWebDav.txt --------------------------------------------------------------------------------