Created
September 6, 2012 10:36
-
-
Save nikolaplejic/3654637 to your computer and use it in GitHub Desktop.
How to copy/paste your password in PayPal's change password form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PayPal blocks copy/paste actions in their "change password" form, | |
citing some irrelevant security issues as the reason. That's a | |
load of crap, and they know it -- disabling copy/paste makes it a | |
lot harder to use a decent password generator and a lot easier to | |
screw up your pwd when retyping, especially if it's a long one | |
(as it should be!). | |
So, here's the quick'n'dirty way to use an externally generated | |
password in your PayPal account: | |
* open the change password form; | |
* open up the console in your browser of choice (recent versions | |
of Firefox: CTRL+Shift+K, Chrome/Chromium: CTRL+Shift+J); | |
* you should see an input form at the bottom of the console; | |
copy/paste each of the following lines, replacing the string | |
"password" with your desired pwd and hitting enter after each | |
one: | |
document.getElementById("new_password").value = "password"; | |
document.getElementById("retype_password").value = "password"; | |
* close the console by pressing the relevant key combo once | |
again, submit the form & voilà! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this should work with all the ids: