I read a lot about security concerns, but seriously, we are already able to record the microphone and webcam using JavaScript with the user's approval. Why isn't there any way to do the same for the clipboard?
Thanks in advance for your answers :)
1–4 of 4 posts
I read a lot about security concerns, but seriously, we are already able to record the microphone and webcam using JavaScript with the user's approval. Why isn't there any way to do the same for the clipboard?
Thanks in advance for your answers :)
[0] http://help.adobe.com/en_US/FlashPlatform/reference/actionsc...
Well the security concerns are VERY valid, in theory after getting your permission to access the clipboard I could poll it every X milliseconds and fire off whatever I get to a third-party service. If you look at Flash's implementation for getting data from the clipboard[0] you can see they mention all sorts of limitations like "Because of security restrictions on accessing clipboard data, this example does not work…
Also, what if the user has to give permission to read the clipboard per default, but he can also check 'Always allow for this tab'?
Well the security concerns are VERY valid, in theory after getting your permission to access the clipboard I could poll it every X milliseconds and fire off whatever I get to a third-party service. If you look at Flash's implementation for getting data from the clipboard[0] you can see they mention all sorts of limitations like "Because of security restrictions on accessing clipboard data, this example does not work…
Okay, good point on getting the clipboard data. But what about setting it? I don't see a big security concern there. Also, what if the user has to give permission to read the clipboard per default, but he can also check 'Always allow for this tab'?