You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2013/02/07 01:14:13 UTC

[jira] [Created] (HTTPCLIENT-1319) InetAddressUtils.isIPv6HexCompressedAddress does not detect excess (or insufficient) groups

Sebb created HTTPCLIENT-1319:
--------------------------------

             Summary: InetAddressUtils.isIPv6HexCompressedAddress does not detect excess (or insufficient) groups
                 Key: HTTPCLIENT-1319
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1319
             Project: HttpComponents HttpClient
          Issue Type: Bug
    Affects Versions: 4.3 Alpha1
            Reporter: Sebb
            Priority: Minor


The IPV6 compressed format regex allows 0 or more hex groups before or after the ::.

This does not detect too many groups (there should be at most 7 surrounding groups in total).
It also allows no groups, i.e "::" which is not permitted AFAIK.

The first issue could be detected by counting the number of ':' characters in the string. 
There should be no more than 7 colons.
The empty group could be detected by checking the length of the string - it must be at least 3 characters.
That should probably be tested first as it is relatively cheap.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org