PayPal has now added 2FA, so this info is no longer needed. Kept for posterity.
Two-factor authentication today is a must to keep your online accounts safe. You certainly want to keep your PayPal account safe. Using SMS to add an extra
Software Installation
First, we need to install some software. I’m using a Macintosh, and these instructions should work under Linux.
First, you need to install the Xcode command line software. Just open the Terminal application that you can find in the /Applications/
Start it and enter:
xcode-select --install
This command installs the necessary tools for the rest of the installation.
Now, let’s install the actual tool that creates the key.
Enter the following into the terminal application:
pip3 install https://github.com/dlenski/python-vipaccess/archive/HEAD.zip
I had to replace pip3 with pip on my installation, but I have many changes in my Python setup, so that may be the reason why pip3 didn’t work on my Mac.
You need to install a software called HomeBrew.
Just enter the following in the Terminal window and press return:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Now we can use Brew to install the rest of the software needed.
Just type the following into Terminal and press enter:
brew install oath-toolkit
That’s all the software you need. Now let’s continue.
Creating Two-Factor Authentication Key
Let’s continue in the Terminal application. We first need to create a key. This key will be used to generate all the six-digit authentications later.
Enter this into Terminal and press return:
bash"]vipaccess provision -p[/cc]
This will create a unique key and store it in a hidden folder in your home directory.
The output from the command should look something like this.
Generating request…
Fetching provisioning response…
Getting token from response…
Decrypting token…
Checking token…
Credential created successfully:
otpauth://totp/VIP%20Access:VSSTXXXXXXXX?digits=6&secret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&period=30&algorithm=SHA1&issuer=Symantec
This credential expires on this date: 2022-02-12T02:26:33.767Z
You will need the ID to register this credential: VSSTXXXXXX
You can use
as would be produced by the official VIP Access apps:
oathtool -d6 -b –totp XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # 6-digit code
oathtool -d6 -b –totp -v XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # … with extra information
Your information is going to look different. The X:ed out in the above output is my key, so I’ve obscured it with X:es. You are going to need this information later to create the key required for PayPal. It’s a good thing to save this output, so copy the text from the Terminal application and paste it into the “Notes” field of your PayPal password inside 1Password.
PayPal Settings
Now it’s time to log in to PayPal and do some changes.
You need to login to your PayPal account. Go to your account setting, and click on “My Settings”. Click on “Update” under the section “Security key”.
Click on “Activate a new security key token.” See picture below.
In the field “Serial number”, enter the key from the output in the Terminal application called “You will need the ID to register this credential:”
It starts with VSST and has six digits after it. Copy it complete with VSST and the six following numbers. Paste it into PayPal’s field “Serial number”
In step 2 on PayPal’s setting, you should input a 6-digit code, but you need to create one first. Copy the command you got from the Terminal output when creating your key. It should look something like this:
oathtool -d6 -b –totp XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # 6-digit code
Paste it into the Terminal application and press return.
This will display a six-digit code. Just copy the generated code from your Terminal window into the first 6-digit field.
Now go back to the Terminal application, and repeat the command. The easiest way is to just press the up-arrow on your keyboard, which should fill in the command you just entered automatically. Press return. If the six-digit key is the same, just keep repeating the command until you get a new unique key. Copy that key and paste it into the field “Next 6-digit key” on the PayPal web page.
Now press activate on the PayPal page and if everything worked out, you should now have a security key completed in PayPal.
Let’s move on to 1Password and make it automatically generate the two-factor authentication for your PayPal password.
1Password Two-Factor Authentication For PayPal
Open the 1Password application. Search for your PayPal password in the search field. Select the PayPal password and press the “Edit” button in the lower right side of the 1Password window.
Now press the circle with three dots inside to add a new field. Select “One-time password” as the field type.
You now have a One-Time Password field, but you need to add the secret key into this field. Copy the information Credential created successfully: you got earlier when we created the key in the Terminal application. It should look something like this:
Now all you have to do is to paste the entire line into the “One-Time Password” field inside 1Password.
Press save in 1Password in the lower right side of the window.
Let’s try it out!
If you added the field described above, as a result, you should now have an indicator showing a timer and a six-digit generated key on one of the lines of information in 1Password for your PayPal password.
If you’ve have done all of the above and everything worked, you are now ready to try it out. Log out of PayPal, and try to log in again using 1Password. It should automatically fill out the password and then copy the generated six-digit key into the clipboard. Paste the six-digit key into the field when PayPal ask for it. You should now be logged in.
Conclusion
If you think that this was a lot of stuff to do just to get better security in PayPal, you’re absolutely right. Send an email to PayPal and ventilate your anger. If they just used normal 2FA-encryption you wouldn’t need all this work. But if you managed to get through all this, give yourself a pat on the back. You just made your PayPal much safer and also gives you a more
Leave a Reply