mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 16:52:45 +08:00
SECURITY: Malformed URL could crash V8
This commit is contained in:
parent
2c6d03f87f
commit
1e880fd5e1
12
vendor/assets/javascripts/better_markdown.js
vendored
12
vendor/assets/javascripts/better_markdown.js
vendored
|
@ -1349,11 +1349,13 @@
|
|||
return [ consumed, link ];
|
||||
}
|
||||
|
||||
m = text.match(new RegExp("^\\((" + urlRegexp + ")\\)"));
|
||||
if (m && m[1]) {
|
||||
consumed += m[0].length;
|
||||
link = ["link", {href: m[1]}].concat(children);
|
||||
return [consumed, link];
|
||||
if (text.indexOf('(') === 0 && text.indexOf(')') !== -1) {
|
||||
m = text.match(new RegExp("^\\((" + urlRegexp + ")\\)"));
|
||||
if (m && m[1]) {
|
||||
consumed += m[0].length;
|
||||
link = ["link", {href: m[1]}].concat(children);
|
||||
return [consumed, link];
|
||||
}
|
||||
}
|
||||
|
||||
// [Alt text][id]
|
||||
|
|
Loading…
Reference in New Issue
Block a user