Friday, September 17, 2010

Clipboard Hack !!!

Clipboard Hack !!!

How this Clipboard Hack is done?

This is the JavaScript source code to get the text from your Clipboard:

Code: JavaScript
<****Script Language="JavaScript"****>
var clipboardText = clipboardData.getData("Text");
alert(clipboardText);



remove ******

How to prevent Clipboard Hack? (Internet Explorer Users)
----------------------------------------
-
1. Go to internet options->security
2. Press custom level
3. In the security settings, select disable under Allow paste operations via script.
This makes contents on Clipboard safe and you are ready to surf the internet without fear. However, it is recommended not to keep sensitive data (such as passwords, credit card numbers, PIN etc.) in the clipboard while internet is on. It is very easy over the internet to extract the text stored in the clipboard to steal your sensitive information.

1 comment: