php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #75041 parse_url() fails if URL/URI ends like /foo:123
Submitted: 2017-08-06 19:19 UTC Modified: 2017-08-06 21:29 UTC
From: k-gun at mail dot com Assigned:
Status: Duplicate Package: URL related
PHP Version: 7.1.8 OS: Ubuntu 16.04.3 LTS
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
41 + 33 = ?
Subscribe to this entry?

 
 [2017-08-06 19:19 UTC] k-gun at mail dot com
Description:
------------
When passing a URL/URI to parse_url() like "/foo/a:1" then false is returning. 

Causing fail parameter pattern: ^.*/[any]*[colon][digit]{1,5}$.

Test script:
---------------
$params = ["/a:1", "/a:11", "/a:111", "/a:1111", "/a:11111", "/a:111111", "/a", "/a:", "/a:b", "/a:b:", "/a:b:1"];
foreach ($params as $param) {
    $result = parse_url($param);
    if ($result === false) {
        printf("Failed: %s\n", $param);
    } else {
        printf("Passed: %s\n", $param);
    }
}

---

Failed: /a:1
Failed: /a:11
Failed: /a:111
Failed: /a:1111
Failed: /a:11111
Passed: /a:111111
Passed: /a
Passed: /a:
Passed: /a:b
Passed: /a:b:
Passed: /a:b:1


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-08-06 21:29 UTC] requinix@php.net
-Status: Open +Status: Duplicate -Package: *URL Functions +Package: URL related
 [2017-08-06 21:29 UTC] requinix@php.net
Duplicate of bug #71646
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 07:01:27 2024 UTC