-
Notifications
You must be signed in to change notification settings - Fork 0
fuzzing
ownesis edited this page May 12, 2021
·
2 revisions
I create a simple TCP server with fork, HTTP-Header-Fuzzer raise error time-out, but i think the problem come from my TCP server and not LibHTTP.
python3 http_header_fuzzer.py -v -uf url.txt -rt -lt -et -ct -uah -csv report.csv-
-rtTest if header values appear in HTTP response. -
-ltTest how the length of a header value affects the HTTP response. -
-etTest how the application handles special characters as header values. -
-ctTest how the application handles commands as header values. -
-uahFuzz the user agent header.
- Reflection.
- Length test.
- Special char.
- Command injection.
- Random User-Agent.
I am creating a simple HTTP server, the same that I used for HTTP-Header-Fuzzer.
I see on this screenshot that the message host down, check your debugger may happened, so I used the same options as in the README and HTTPFuzzer never returned this message to me, and nothing else in particular happened.
python2 HTTPFuzzer.py 192.168.1.6 4444 all 3000-
3000Path maximum bytes.
all is:
- Perform fuzzing on http methods [GET, POST, PUT, HEAD].
- Perform fuzzing on HOST header.
- Perform fuzzing on user agent header.
- Methods fuzzing.
- Host header.
- User-Agent header.