mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
60 lines
2.2 KiB
JavaScript
60 lines
2.2 KiB
JavaScript
export default {
|
||
id: 'passwordManager',
|
||
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 won’t allow access to all of your other accounts.
|
||
|
||
\n\nAt the very minimum, you should have a unique password for high-value accounts like Google, Apple, email, and banking accounts.
|
||
`,
|
||
apps: [
|
||
{
|
||
name: '1Password',
|
||
image: '/static/img/1password.jpg',
|
||
url: 'https://1password.com/',
|
||
offer: {
|
||
label: 'Sign up with Security Checklist to get 3 months free',
|
||
url: 'https://start.1password.com/sign-up/family?c=SECURELIST-FJN7FIKQ',
|
||
},
|
||
sources: {
|
||
windows: 'https://1password.com/downloads/windows/',
|
||
macos: 'https://1password.com/downloads/mac/',
|
||
ios: 'https://1password.com/downloads/ios/',
|
||
android: 'https://1password.com/downloads/android/',
|
||
},
|
||
},
|
||
{
|
||
name: 'LastPass',
|
||
image: '/static/img/lastpass.jpg',
|
||
url: 'https://www.lastpass.com/',
|
||
sources: {
|
||
windows:
|
||
'https://download.cloud.lastpass.com/windows_installer/lastpass.exe',
|
||
macos:
|
||
'https://itunes.apple.com/us/app/lastpass/id926036361?ls=1&mt=12',
|
||
ios:
|
||
'https://itunes.apple.com/us/app/lastpass-password-manager/id324613447',
|
||
android: 'https://lastpass.com/android_market.php',
|
||
},
|
||
},
|
||
],
|
||
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',
|
||
},
|
||
{
|
||
name: 'Password managers compared',
|
||
url:
|
||
'https://www.howtogeek.com/240255/password-managers-compared-lastpass-vs-keepass-vs-dashlane-vs-1password/',
|
||
},
|
||
{
|
||
name: 'Have I Been Pwned: Find out if your passwords have been hacked',
|
||
url: 'https://haveibeenpwned.com/',
|
||
},
|
||
],
|
||
};
|