security-checklist/config/passwordManager.js

131 lines
4.9 KiB
JavaScript
Raw Normal View History

2019-01-13 07:00:23 +00:00
export default {
id: 'passwordManager',
2019-01-13 21:35:22 +00:00
title: 'Use a password manager',
description: `A password manager helps you create a unique password for each online service you use. Having a unique password ensures that if one service you use is hacked, the compromised password wont allow access to all of your other accounts.
2019-01-13 21:48:26 +00:00
\n\nAt the very minimum, you should have a unique password for high-value accounts like Google, Apple, email, and banking accounts.
2019-01-13 21:35:22 +00:00
`,
2019-01-13 07:00:23 +00:00
apps: [
{
name: '1Password',
image: '/static/img/1password.jpg',
url: 'https://1password.com/',
2019-01-14 18:12:41 +00:00
offer: {
label: 'Sign up with Security Checklist to get 3 months free',
url: 'https://start.1password.com/sign-up/family?c=SECURELIST-FJN7FIKQ',
},
2019-01-13 07:00:23 +00:00
sources: {
windows: 'https://1password.com/downloads/windows/',
2019-01-13 07:36:51 +00:00
macos: 'https://1password.com/downloads/mac/',
2019-01-13 07:00:23 +00:00
ios: 'https://1password.com/downloads/ios/',
android: 'https://1password.com/downloads/android/',
2019-01-15 17:09:13 +00:00
linux: 'https://1password.com/downloads/linux/',
2019-01-13 07:00:23 +00:00
},
},
{
name: 'LastPass',
image: '/static/img/lastpass.jpg',
url: 'https://www.lastpass.com/',
sources: {
windows:
'https://download.cloud.lastpass.com/windows_installer/lastpass.exe',
2019-01-13 07:36:51 +00:00
macos:
'https://itunes.apple.com/us/app/lastpass/id926036361?ls=1&mt=12',
2019-01-13 07:00:23 +00:00
ios:
'https://itunes.apple.com/us/app/lastpass-password-manager/id324613447',
android: 'https://lastpass.com/android_market.php',
2019-01-15 17:09:13 +00:00
linux: 'https://lastpass.com/misc_download2.php',
2019-01-13 07:00:23 +00:00
},
},
2019-01-14 22:50:22 +00:00
{
name: 'Dashlane',
image: '/static/img/dashlane.jpg',
url: 'https://www.dashlane.com/',
sources: {
windows: 'https://www.dashlane.com/directdownload?target=archive_win',
macos: 'https://www.dashlane.com/directdownload?target=launcher_macosx',
ios:
'https://itunes.apple.com/us/app/dashlane-password-manager/id517914548',
android: 'https://play.google.com/store/apps/details?id=com.dashlane',
2019-01-15 17:09:13 +00:00
linux:
'https://support.dashlane.com/hc/en-us/articles/115005432325-Getting-started-with-Dashlane-for-Linux-and-Chromebook',
2019-01-14 22:50:22 +00:00
},
},
2019-01-15 09:40:49 +00:00
{
name: 'Bitwarden',
2019-01-15 09:57:52 +00:00
image: '/static/img/bitwarden.jpg',
2019-01-15 09:40:49 +00:00
url: 'https://www.bitwarden.com/',
sources: {
2019-01-15 17:09:13 +00:00
windows:
'https://vault.bitwarden.com/download/?app=desktop&platform=windows',
macos:
'https://vault.bitwarden.com/download/?app=desktop&platform=macos',
2019-01-15 09:40:49 +00:00
ios:
'https://itunes.apple.com/app/bitwarden-free-password-manager/id1137397744?mt=8',
2019-01-15 17:09:13 +00:00
android:
'https://play.google.com/store/apps/details?id=com.x8bit.bitwarden',
linux:
'https://vault.bitwarden.com/download/?app=desktop&platform=linux',
2019-01-15 09:40:49 +00:00
},
},
{
name: 'Buttercup',
image: '/static/img/buttercup.png',
url: 'https://buttercup.pw/',
sources: {
windows:
'https://github.com/buttercup/buttercup-desktop/releases/download/v1.14.0/buttercup-desktop-setup-1.14.0.exe',
macos:
'https://github.com/buttercup/buttercup-desktop/releases/download/v1.14.0/Buttercup-1.14.0.dmg',
ios:
'https://itunes.apple.com/us/app/buttercup-password-manager/id1294001514?ls=1&mt=8',
android:
'https://play.google.com/store/apps/details?id=com.buttercup&hl=en',
linux:
'https://github.com/buttercup/buttercup-desktop/releases/download/v1.14.0/buttercup-desktop-1.14.0.x86_64.rpm',
},
},
2019-01-16 17:22:42 +00:00
{
name: 'Avast Passwords',
image: '/static/img/avast-passwords.png',
url: 'https://www.avast.com/passwords',
sources: {
windows: 'https://www.avast.com/passwords#pc',
macos: 'https://www.avast.com/passwords#mac',
ios: 'https://www.avast.com/passwords#ios',
android: 'https://www.avast.com/passwords#android',
},
},
2019-01-22 18:49:10 +00:00
{
name: 'iCloud Keychain',
image: '/static/img/icloud.png',
url: 'https://www.icloud.com/',
sources: {
macos: 'https://support.apple.com/en-us/HT204085',
ios: 'https://support.apple.com/en-us/HT204085'
},
},
2019-01-13 07:00:23 +00:00
],
resources: [
{
name: 'How to use a password manager (and why you really should)',
url:
'https://www.theverge.com/2017/7/24/15921282/best-password-manager-1password-lastpass-dashlane-how-to',
},
{
name: 'How password managers work and why you should use one',
url:
'https://motherboard.vice.com/en_us/article/59yv5x/how-password-managers-work-and-why-you-should-use-one',
},
2019-01-13 21:35:22 +00:00
{
name: 'Password managers compared',
url:
'https://www.howtogeek.com/240255/password-managers-compared-lastpass-vs-keepass-vs-dashlane-vs-1password/',
},
{
2019-01-14 16:15:49 +00:00
name: 'Have I Been Pwned: Find out if your passwords have been hacked',
2019-01-13 21:35:22 +00:00
url: 'https://haveibeenpwned.com/',
},
2019-01-13 07:00:23 +00:00
],
};