Chrome allows sites to write to the clipboard

Google's Chrome allows websites to write to the clipboard without the user's permission. Of course (for those in the know this could be a major .

ccpbug

How you can try it:

  1. Visit the address https://webplatform.news/ in a program based on Chromium
  2. Check what your clipboard has saved (paste it somewhere)

We tried it. The image above shows the web and then you see the txt file I pasted for testing.

cctxt

Chrome allows websites to write to the clipboard without the user's permission

The webpage uses the following JavaScript code to write to the clipboard:

try {
  let type = 'text/plain';
  let blob = new Blob(
    [
      'Hello, this message is in your clipboard because you visited the website Web Platform News in a browser that allows websites to write to the clipboard without the user's permission. Sorry for the inconvenience. For more information about this issue, see https://github.com/w3c/clipboard-apis/issues/182.',
    ],
    { type }
  );
  let item = new ClipboardItem({ [type]: blob });
  navigator.clipboard.write([item]);
} catch (err) {}

There is also the message:

Hello, this message is in your clipboard because you visited the Web Platform News site in a browser that allows sites to write to the clipboard without the user's permission. Sorry for the inconvenience. For more information about this issue, see github.com/w3c/clipboard-apis/issues/182.

In the specific problem is described. The webpage can write to the clipboard with the Chrome browser using navigator.clipboard.write() or navigator.clipboard.writeText() without the user noticing.

On Github it is stated that o but Firefox doesn't respond to the page's JavaScript.

We should mention that this particular problem also occurs in Edge or other Chromium clones.

iGuRu.gr The Best Technology Site in Greecefgns

every publication, directly to your inbox

Join the 2.082 registrants.
chrome, edge, firefox, hack, iguru

Written by giorgos

George still wonders what he's doing here ...

Leave a reply

Your email address is not published. Required fields are mentioned with *

Your message will not be published if:
1. Contains insulting, defamatory, racist, offensive or inappropriate comments.
2. Causes harm to minors.
3. It interferes with the privacy and individual and social rights of other users.
4. Advertises products or services or websites.
5. Contains personal information (address, phone, etc.).