You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, mod_whoisng does not work with Apache 2.2.4x (on Centos 7) for
certain inputs. This instance of apache httpd splits the input into
multiple buckets or arbitrary lengths. For example, if whois domain is more
than 24 bytes it is split into two heap buckets inside apr_bucket_brigade,
which is not handled properly by mod_whoisng and therefore results in Error
400 Bad Request response output.
I have fixed this for my use, and will be happy to share if interested.
Thank you
Fails with segment fault on CentOS 7 with httpd 2.2x and httpd 2.4x
Fix:
Change line 68 of mod_whoisng.c
int len=1;
Change to
apr_size_t len=1;
Recompile and restart httpd
The text was updated successfully, but these errors were encountered: