Skip to content

Instantly share code, notes, and snippets.

@paddykontschak
Forked from nikolaplejic/gist:3654637
Created October 16, 2012 16:55
Show Gist options
  • Save paddykontschak/3900539 to your computer and use it in GitHub Desktop.
Save paddykontschak/3900539 to your computer and use it in GitHub Desktop.
How to copy/paste your password in PayPal's change password form

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("pwdID").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