Jorge Oliveira

Results 53 comments of Jorge Oliveira

In theory you could compile it from source using monodevelop and submit any necessary patches as a pull request.

https://github.com/NewEraCracker/LOIC/releases

Maybe this could help? https://github.com/freebsd/freebsd-ports/commit/79fcb46821d2faea50775661ec58b0c71b237b7f

Just for the record, this is much easier to be mitigated at Webserver level: https://httpoxy.org/

Just out of curiosity. Are you running OPCache or any other zend extension ?

Can you reproduce this random wrongful behavior if OPcache it is not enabled ? My guess is that OPcache could cache function calls and if one function is suddenly blocked...

I remember I could reproduce this with PHP running as Apache module. Not sure if this is Windows specific but for the record I could reproduce this with Apache 2.4...

I will have to setup a Linux box to find out. Will report later if I encounter the issue there or not.

Just an heads up. I've tested latest Suhosin master and PHP 5.4.36-0+deb7u3 in Kali Linux (a Debian derivative) and was unable to reproduce. Yet, I have tested in Windows with...

Applying an adapted version of the previous patch fixes the problem. ``` diff --- suhosin.c +++ suhosin.c @@ -50,13 +50,15 @@ static int suhosin_module_startup(zend_extension *extension); static void suhosin_shutdown(zend_extension *extension); -...