gpt4 book ai didi

javascript - 以纯文本形式复制到剪贴板

转载 作者:可可西里 更新时间:2023-11-01 02:05:48 27 4
gpt4 key购买 nike

我在 Chrome 扩展程序的 background.js 中使用这段代码将文本复制到用户的剪贴板:

chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.command == "copy") {
executeCopy(request.text);
sendResponse({farewell: "copy request received"});
}
}
);

function executeCopy(text){
var copyDiv = document.createElement('div');
copyDiv.contentEditable = true;
document.body.appendChild(copyDiv);
copyDiv.innerHTML = text;
copyDiv.unselectable = "off";
copyDiv.focus();
document.execCommand('SelectAll');
document.execCommand("Copy", false, null);
document.body.removeChild(copyDiv);
}

它复制带格式的文本。如何复制没有格式的纯文本文本?

最佳答案

您的问题代码包含一个常见的安全问题,称为 XSS .因为您采用不受信任的输入并将其分配给 .innerHTML ,您允许攻击者在文档的上下文中插入任意 HTML。

幸运的是,攻击者无法在您的扩展上下文中运行脚本,因为该扩展的默认 Content security policy禁止内联脚本。正是由于这种情况,此 CSP 在 Chrome 扩展程序中强制执行,以防止 XSS 漏洞。

将 HTML 转换为文本的正确方法是通过 DOMParser 应用程序接口(interface)。以下两个函数显示了如何将文本复制为文本,或针对您的情况将 HTML 复制为文本:

// Copy text as text
function executeCopy(text) {
var input = document.createElement('textarea');
document.body.appendChild(input);
input.value = text;
input.focus();
input.select();
document.execCommand('Copy');
input.remove();
}

// Copy HTML as text (without HTML tags)
function executeCopy2(html) {
var doc = new DOMParser().parseFromString(html, 'text/html');
var text = doc.body.textContent;
return executeCopy(text);
}

请注意 .textContent完全忽略 HTML 标签。如果你想解释<br> s 作为换行符,使用非标准(但在 Chrome 中支持).innerText属性而不是 .textContent .

以下是 XSS 如何使用 executeCopy 被滥用的众多示例中的两个。从你的问题中发挥作用:

// This does not only copy "Text", but also trigger a network request
// to example.com!
executeCopy('<img src="http://example.com/">Text');

// If you step through with a debugger, this will show an "alert" dialog
// (an arbitrary script supplied by the attacker!!)
debugger;
executeCopy('<iframe src="data:text/html,<script>alert(/XXS-ed!/);<\/script>"></iframe>');

关于javascript - 以纯文本形式复制到剪贴板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25099409/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com