Comments
-
FYI: The problem with trailing spaces has not been fixed in the build released on November 2nd.
-
Any news on this?
-
1. We have only seen URL's with the postfix XHRB0978575529B486ABCA7EB68E0E44469XHR in the access logs. I'm sorry to say, but we have not been able to reproduce this so we simply applied the fix described above in my second post. But it seems like the Bitdefender proxy, in some cases, does not strip the identifier. This has…
-
I have temporarily fixed this in our web application now. # Bitdefender sometimes incorrectly appends an identifier on the format XHR{32 byte hex}XHR to the URL. Hack to remove it. if environ["PATH_INFO"][-3:] == "XHR" and environ["PATH_INFO"][-38:-35] == "XHR": environ["PATH_INFO"] = environ["PATH_INFO"][-38:] During the…