This is a proof-of-concept code for the CONTINUATION flood vulnerability found and documented by Bartek Nowotarski. The technical details are very well documented in his blog post here. While my focus was on the Go bug as documented by the researcher, this code should be helpful in testing other CVEs related to this issue.
This code borrows some inspiration from:
- The PoC code for the rapid reset vulnerability from https://github.com/secengjeff/rapidresetclient
- Test code added after the vulnerability was patched by the Go team, located in golang/net/http2/server_test.go
My initial goal was to understand the vulnerability in detail, in addition to developing a tool for testing this issue at work. This was also very helpful when working on understanding the inner workings of http2 in detail. Other sources that were helpful include:
- Daniel Stenberg's http2 explained book
- rfc 7540
You can run the included server.go
file which runs on a vulnerable version of golang.org/x/net (0.20.0).
$ go run server.go
The server runs on port 8443, which the client points to by defaults.
When ran against vulnerable servers, the client will be able to continue to send CONTINUATION frames for as long as you specify for the wait
flag in seconds. The server prints its CPU usage every 2 seconds, which you will see increase rapidly as the client runs. In patched versions (0.23.0 and above), the server will close the connection once the header size limit is reached.
Run the client, creating 6 concurrent connections, calling https://localhost:8443, and sending continuation frames for 200 seconds for each connection:
$ go run client.go -time-limit 200 -connections 6 -url https://localhost:8443