mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -06:00
SECURITY: XSS issue in share popup if invalid link is passed in.
This commit is contained in:
parent
94c8410521
commit
58edd203a9
@ -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