Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit f3bd162

Browse files
authored
Fixed issue in URL parsing
Fixed "Broken URL parsing" issue mentioned in issue #8640 [details: 1) empty username or password are allowed, 2) colon in password is allowed]
1 parent 1f0cec9 commit f3bd162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/navigation/path.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $.mobile.path = path = {
5757
// [16]: ?msg=1234&type=unread
5858
// [17]: #msg-content
5959
//
60-
urlParseRE: /^\s*(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/,
60+
urlParseRE: /^\s*(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]*)(?:\:([^@\/#\?]*))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/,
6161

6262
// Abstraction to address xss (Issue #4787) by removing the authority in
6363
// browsers that auto-decode it. All references to location.href should be

0 commit comments

Comments
 (0)