This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author giampaolo.rodola
Recipients
Date 2007-06-28.19:45:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
--- malicious script

import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("127.0.0.1", 8025))
while 1:
    s.sendall('x' * 1024)


--- proposed smtpd.py patch

124a125
>         self.__in_buffer_len = 0
135a137,139
>         self.__in_buffer_len += len(data)
>         if self.__in_buffer_len > 4096:
>             self.__line = []

History
Date User Action Args
2007-08-23 14:58:07adminlinkissue1745035 messages
2007-08-23 14:58:07admincreate