-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
Considering for example this snippet of code
def run(target):
conn = h11.Connection(our_role=h11.CLIENT)
sock = socket.create_connection((target, 80))
request = h11.Request(method="GET", target="/", headers=[("Host", target)])
data = conn.send(request)
sock.sendall(data)
data = sock.recv(2048)
conn.receive_data(data)
conn.next_event()
>>> run("100.33.56.173")
h11._util.RemoteProtocolError: multiple Content-Length headers
>>> run("220.181.136.243")
h11._util.RemoteProtocolError: Response status_code should be in range [200, 600), not 600
Other errors of the same kind that I've encountered include:
h11._util.RemoteProtocolError: malformed data
h11._util.RemoteProtocolError: Receive buffer too long
These are all basically ill-configured servers, sometimes even against protocol specs, but they actually appear a lot in the wild. I think these should work nonetheless, as most HTTP clients don't make these kinds of restrictions and they do allow users to see the underlying data despite the misconfigurations.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels