https://bz.apache.org/bugzilla/show_bug.cgi?id=69672

--- Comment #3 from Peter Meiser <[email protected]> ---
If I'm not mistaken, the address check fails because "." (dot) is not included
in "valid_addr_chars" so that v4-mapped IPv6 addresses are validated properly.

At
https://github.com/apache/httpd/blob/806e1f383c1601358c29c70c308c6bf3e2c2f4d5/modules/metadata/mod_remoteip.c#L816

valid_addr_chars = "0123456789abcdefABCDEF:";

should be

valid_addr_chars = "0123456789abcdefABCDEF:.";

so that the check at
https://github.com/apache/httpd/blob/806e1f383c1601358c29c70c308c6bf3e2c2f4d5/modules/metadata/mod_remoteip.c#L833
succeeds.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to