Arc Riley
Arc Riley
I would have sent it to your security list if there was one. I believe the correct patch would be informing users that XHTML-IM should be disabled and removing support...
DDoS attacks are primarily executed against servers because individual users rarely have their IP addresses exposed like this, but they used to happen on IRC against individual users all the...
This issue was discovered publicly by one of our Google Code-in students, who was writing a plugin for Candy, but used an onclick="" from the sender side. This led to...
The fix is to disable support for HTML in messages. Candy isn't the only client with this kind of vulnerability, and once you start to look at the problem nothing...
Do you have a bug bounty for this? On Fri, Jul 14, 2017 at 10:43 AM, Ben Langfeld wrote: > Do you have a pull request? > > — >...
I was curious about this too, also would be nice to see it on the frontpage support matrix.
After restarting, virtual keyboard now works.
 Three months after this bug was posted it remains unassigned and unaddressed.
There is no self.drain, I looked into copying the code over but what is really needed is ensuring self._buffer is empty It might be necessary to freeze write() and read()...
As per asyncio devs' advice, this is how I did this: async def starttls_server(loop, prototype, addr, port, family): sock = socket.socket(family, socket.SOCK_STREAM) sock.setblocking(False) sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) sock.bind((addr, port)) sock.listen(128) while...