I am running a high traffic ssl site with apache / mod_wsgi / python. Very often (about 10 times in 3 months) I saw a few extra garbage characters in the mail data.
Usually it was in the form of an extra char at the end.
('access.uid', 'allow\xba') ('checksum', 'b219d6a006ebd95691d0d7b468a94510496c5dd8\xff')
Once, although it was in the middle of some kind of password. Sort of:
('login_password', 'samplepass\xe7word')
I tried to restore the request with all the same headers, but I could not repeat the error. Does anyone have any ideas on what might be causing this or any ideas on how I could reproduce and fix this problem?
(Copied from below):
I am using apache-2.2.17_1 - Peter March 15 at 18:09 I am using mod_wsgi-3.3_1 on one computer and mod_wsgi-2.8_1 on another. I saw this error on both.
Peter source share