summaryrefslogtreecommitdiff
path: root/ext/standard/tests/url/bug69976.phpt
diff options
context:
space:
mode:
authorChristoph M. Becker <cmb@php.net>2015-07-01 23:45:52 +0200
committerChristoph M. Becker <cmb@php.net>2015-07-01 23:48:16 +0200
commite49922d3f8060e47f810a24ce48d4e622b493699 (patch)
tree0cead8aa9102aa033a9d4bb757afedccb0d806c3 /ext/standard/tests/url/bug69976.phpt
parent6daed13c8bc29391e6a9f8c4692a69e13ac8c085 (diff)
downloadphp-git-e49922d3f8060e47f810a24ce48d4e622b493699.tar.gz
Fix #69976: Unable to parse "all" urls with colon char
If a colon occurs in a query string or fragment of a partial URL without scheme, parse_url() tries to regard it as port separator. If up to 5 digits follow and then a slash or the end of the string, parse_url() fails. We're fixing this by checking whether the colon is part of the query string or the fragment, under the assumption that question marks and hash signs are only allowed as separators of query string and fragments, respectively, what is guarenteed for URIs (RFC 3986), but not necessarily for URLs (RFC 1738) where question marks are allowed for usernames and passwords. Anyhow, this constitutes a minor BC, so the fix is applied to master only.
Diffstat (limited to 'ext/standard/tests/url/bug69976.phpt')
-rw-r--r--ext/standard/tests/url/bug69976.phpt34
1 files changed, 34 insertions, 0 deletions
diff --git a/ext/standard/tests/url/bug69976.phpt b/ext/standard/tests/url/bug69976.phpt
new file mode 100644
index 0000000000..8c8ceac9c4
--- /dev/null
+++ b/ext/standard/tests/url/bug69976.phpt
@@ -0,0 +1,34 @@
+--TEST--
+Bug #69976 (Unable to parse "all" urls with colon char)
+--FILE--
+<?php
+var_dump(parse_url("/busca/?fq=B:20001"));
+var_dump(parse_url("/busca/?fq=B:200013"));
+var_dump(parse_url("/busca/?fq=home:01234"));
+var_dump(parse_url("/busca/?fq=home:012345"));
+?>
+--EXPECT--
+array(2) {
+ ["path"]=>
+ string(7) "/busca/"
+ ["query"]=>
+ string(10) "fq=B:20001"
+}
+array(2) {
+ ["path"]=>
+ string(7) "/busca/"
+ ["query"]=>
+ string(11) "fq=B:200013"
+}
+array(2) {
+ ["path"]=>
+ string(7) "/busca/"
+ ["query"]=>
+ string(13) "fq=home:01234"
+}
+array(2) {
+ ["path"]=>
+ string(7) "/busca/"
+ ["query"]=>
+ string(14) "fq=home:012345"
+}