andresriancho / w3af

w3af: web application attack and audit framework, the open source web vulnerability scanner.
http://w3af.org/
4.56k stars 1.22k forks source link

Improvement: Support for HTTP/2 #12127

Open andersonDadario opened 9 years ago

andersonDadario commented 9 years ago

Here is a list of HTTP/2 implementations where you may find a python client that could perform HTTP/2 requests for you: https://github.com/http2/http2-spec/wiki/Implementations

Probably next year more web apps will start to use HTTP/2; some browsers already support it.

andresriancho commented 9 years ago

Note that the only documented http2 client for python says:

Currently, hyper‘s HTTPConnection class is not thread-safe. Thread-safety is planned for hyper‘s core objects, but in this early alpha it is not a high priority.

http://hyper.readthedocs.org/en/latest/advanced.html#multithreading

andresriancho commented 9 years ago