You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2017/02/04 14:03:51 UTC

[jira] [Resolved] (VALIDATOR-411) UrlValidator accepts ports above max limit of 16-bit unsigned integer

     [ https://issues.apache.org/jira/browse/VALIDATOR-411?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb resolved VALIDATOR-411.
----------------------------
       Resolution: Fixed
    Fix Version/s: 1.5.2

URL: http://svn.apache.org/viewvc?rev=1781670&view=rev
Log:
VALIDATOR-411 UrlValidator accepts ports above max limit of 16-bit unsigned integer

Modified:
    commons/proper/validator/trunk/src/changes/changes.xml
    commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java
    commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/routines/UrlValidatorTest.java


> UrlValidator accepts ports above max limit of 16-bit unsigned integer
> ---------------------------------------------------------------------
>
>                 Key: VALIDATOR-411
>                 URL: https://issues.apache.org/jira/browse/VALIDATOR-411
>             Project: Commons Validator
>          Issue Type: Bug
>          Components: Routines
>    Affects Versions: 1.5.1
>            Reporter: Michael Osipov
>             Fix For: 1.5.2
>
>
> Such a value {{http://host.organization.com:100000}} is gladly accepted because the port ins never parsed and boundaries not checked.
> {code:java}
> public static void main(String[] args) {
>   UrlValidator validator = UrlValidator.getInstance();
>   System.out.println(validator.isValid("http://host.organization.com:100000"));
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)