
This will probably get ignored, but anyway.
The overwriting firefox/IE clipboard has been available for a long time. I imagine these users, (although I haven't read all the four forums and subsequent links for each post)
had a window hidden from them or a frame around a webpage. The only change is to use it for spamming links which is a nice human touch to spreading spam, lots of people Ctrl-C-V without thinking.
It overwrites anything you have in clipboard without requiring any action such as clicking or selecting, you do need flash and javascript running which 99% do.
For an example,
clipboard.swf is (I think from decompiling it)
// Action script...
// [Action in Frame 1]
if (clipboard.length)
{
System.setClipboard(clipboard);
} // end if
The script is, according to google search
#
function copy(inElement) {
#
if (inElement.createTextRange) {
#
var range = inElement.createTextRange();
#
if (range && BodyLoaded==1)
#
range.execCommand('Copy');
#
} else {
#
var flashcopier = 'flashcopier';
#
if(!document.getElementById(flashcopier)) {
#
var divholder = document.createElement('div');
#
divholder.id = flashcopier;
#
document.body.appendChild(divholder);
#
}
#
document.getElementById(flashcopier).innerHTML = '';
#
var divinfo = '<embed src="_clipboard.swf" FlashVars="clipboard='+escape(inElement.value)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
#
document.getElementById(flashcopier).innerHTML = divinfo;
#
}
#
}
In 2005
http://www.jeffothy.com/weblog/clipboard-copy/
http://ajaxian.com/archives/auto-copy-to-clipboard
http://www.rodsdot.com/ee/cross_browser_clipboard_copy_with_pop_over_message.asp