mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 03:43:42 +08:00
SECURITY: XSS issue in share popup if invalid link is passed in.
This commit is contained in:
parent
d143cde643
commit
790acfd99f
|
@ -39,7 +39,7 @@ export default Ember.Component.extend({
|
|||
} else {
|
||||
const $linkForTouch = $('#share-link .share-for-touch a');
|
||||
$linkForTouch.attr('href', link);
|
||||
$linkForTouch.html(link);
|
||||
$linkForTouch.text(link);
|
||||
const range = window.document.createRange();
|
||||
range.selectNode($linkForTouch[0]);
|
||||
window.getSelection().addRange(range);
|
||||
|
|
Loading…
Reference in New Issue
Block a user