Thursday, January 27, 2011

Reveal the passwords behind the "****" !!

Follow the steps given below-

1) Open the Login Page of any website.
(eg. http://orkut.com)

2) Type your 'Username' and 'Password'.

3) Copy and paste the JavaScript code given below into your browser's address bar and press 'Enter'.
Code:
javascript: alert(document.getElementById('Passwd').value);



Or Install this GreaseMonkey.... No need to run script juz put mouse on textbox it will convert password to text
Code:
// ==UserScript==
// @name Shows the Password on MouseOver
// @namespace Mr Nobody
// @include *
// @description shows password when mouse is moved over password field
(function() {
var inputs, input;
inputs = document.evaluate(
'//input[@type="password"]',
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
if(!inputs.snapshotLength) return;
for(var i = 0; i < inputs.snapshotLength; i++) {
input = inputs.snapshotItem(i);
input.addEventListener('mouseover', function(event) {
this.type = 'text';
}, false);
input.addEventListener('mouseout', function(event) {
this.type = 'password';
}, false);
}
})();

No comments:

Post a Comment