I am trying to use Hydra to brute force a HTTP POST form page, however the page is returning a HTTP Continuation
I'm not sure what that is.
This is being caused by the HTTP/1.0
at the top of the request. I'm not sure how to change it to HTTP/1.1
which would fix the issue.
Also, is there a way to change the order of HTTP headers? And is there an alternative to Hydra that actually has good support for this?
EDIT: Sorry, I didn't give enough information. I'm using wireshark to track the requests that Hydra is sending. It it is showing a sequence of packets like this
src dst prot info
my computer login server HTTP POST /login
login server my computer HTTP Continuation
And if I examine the response, it contains only the lower half of the HTML document in the response. However, using Burpsuite to send the requests, I can somehow see the whole HTML document in the response.
I have tried enabling and disabling Allow subdissector to reassemble TCP streams
, which doesn't change anything.
This is really confusing. Does anybody know what's going on??