Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15422669
D21568.id51339.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D21568.id51339.diff
View Options
diff --git a/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php b/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php
--- a/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php
+++ b/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php
@@ -14,10 +14,13 @@
static $bare_pattern;
if ($angle_pattern === null) {
- // See T13608. Limit protocol matches to 32 characters to improve the
- // performance of the "<protocol>://" pattern, which can take a very long
- // time to match against long inputs if the maximum length of a protocol
- // sequence is unrestricted.
+ // See T13608. A previous version of this code matched bare URIs
+ // starting with "\w{3,}", which can take a very long time to match
+ // against long inputs.
+ //
+ // Use a protocol length limit in all patterns for general sanity,
+ // and a negative lookbehind in the bare pattern to avoid explosive
+ // complexity during expression evaluation.
$protocol_fragment = '\w{3,32}';
$uri_fragment = '[^\s'.PhutilRemarkupBlockStorage::MAGIC_BYTE.']+';
@@ -33,7 +36,7 @@
$uri_fragment);
$bare_pattern = sprintf(
- '(%s://%s)',
+ '((?<!\w)%s://%s)',
$protocol_fragment,
$uri_fragment);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 10:05 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7718315
Default Alt Text
D21568.id51339.diff (1 KB)
Attached To
Mode
D21568: Add a negative lookbehind to the Remarkup "bare URI" regular expression pattern
Attached
Detach File
Event Timeline
Log In to Comment