If the password has been saved:
- Go to desired page.
- View source
- Look for password field
CODE
<input type="password"...
- Change type to text
CODE
<input type="text"...
- Apply change
- Press Ctrl+Enter
- Quickly press Stop button.
Or
- Go to desired page.
- View source
- Look for password field
CODE
<input type="password"..
.
- Above it look for the form tag
CODE
<form methog="POST" id="form1" name="form1" action="login.php">
- In the form tag, change the method property to "Get"
CODE
<form methog="GET" id="form1" name="form1" action="login.php">
- Press Ctrl+Enter
- You should be seeing your password in the address bar.
Hope it helps.
Cheers.